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