Files
AIPS/dotnet/AipsCore/Infrastructure/MessageBroking/RabbitMQ/IRabbitMQConnection.cs

8 lines
210 B
C#

using RabbitMQ.Client;
namespace AipsCore.Infrastructure.MessageBroking.RabbitMQ;
public interface IRabbitMqConnection
{
Task<IChannel> CreateChannelAsync(CancellationToken cancellationToken = default);
}