implemented rabbitmq message broker support (publisher)
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
using RabbitMQ.Client;
|
||||
|
||||
namespace AipsCore.Infrastructure.MessageBroking.RabbitMQ;
|
||||
|
||||
public interface IRabbitMqConnection
|
||||
{
|
||||
Task<IChannel> CreateChannelAsync(CancellationToken cancellationToken = default);
|
||||
}
|
||||
Reference in New Issue
Block a user