9 lines
182 B
C#
9 lines
182 B
C#
|
using Cloud.Services.Broker.Support;
|
||
|
|
||
|
namespace Cloud.Services.Broker
|
||
|
{
|
||
|
public interface IBrokerProdurcer
|
||
|
{
|
||
|
Task ProduceAsync(string topic, Command command);
|
||
|
}
|
||
|
}
|