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