Cucumber/Cloud/Services/Broker/IBrokerConsumer.cs

9 lines
204 B
C#
Raw Normal View History

using Cloud.Services.Broker.Support;
namespace Cloud.Services.Broker
{
public interface IBrokerConsumer
{
2024-12-04 01:57:10 +04:00
IEnumerable<T>? WaitMessages<T>(string topic) where T : IBrokerResponse;
}
}