Cucumber/Cloud/Services/Broker/IBrokerService.cs

10 lines
218 B
C#
Raw Normal View History

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