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