implemented rabbitmq message broker support (publisher)

This commit is contained in:
2026-02-13 23:40:54 +01:00
parent ff2daa64b5
commit e2db689888
6 changed files with 100 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
using RabbitMQ.Client;
namespace AipsCore.Infrastructure.MessageBroking.RabbitMQ;
public interface IRabbitMqConnection
{
Task<IChannel> CreateChannelAsync(CancellationToken cancellationToken = default);
}