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 System.Runtime.Serialization;
namespace AipsCore.Application.Abstract;
public interface IMessagePublisher
{
Task PublishAsync<T>(string exchange, string routeKey, T message, CancellationToken cancellationToken = default);
}