10 lines
218 B
C#
10 lines
218 B
C#
|
using Cloud.Services.Broker.Support;
|
||
|
|
||
|
namespace Cloud.Services.Broker
|
||
|
{
|
||
|
public interface IBrokerService
|
||
|
{
|
||
|
Task<CommandResult> Produce(Command command);
|
||
|
Task<T> Consume<T>(string topic);
|
||
|
}
|
||
|
}
|