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