9 lines
190 B
C#
9 lines
190 B
C#
using Cloud.Services.Broker.Support;
|
|
|
|
namespace Cloud.Services.Broker
|
|
{
|
|
public interface IBrokerConsumer
|
|
{
|
|
T? WaitMessage<T>(string topic) where T : IBrokerResponse;
|
|
}
|
|
} |