10 lines
224 B
C#
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;
|
|
}
|
|
} |