Cucumber/Cloud/Services/Broker/IBrokerService.cs

10 lines
224 B
C#

using Cloud.Services.Broker.Support;
namespace Cloud.Services.Broker
{
public interface IBrokerService
{
Task Produce(Command command);
T? Consume<T>(string topic) where T : IBrokerResponse;
}
}