Cucumber/Cloud/Services/Broker/IBrokerConsumer.cs

9 lines
190 B
C#
Raw Normal View History

using Cloud.Services.Broker.Support;
namespace Cloud.Services.Broker
{
public interface IBrokerConsumer
{
T? WaitMessage<T>(string topic) where T : IBrokerResponse;
}
}