implemented rabbitmq message broker support (publisher)
This commit is contained in:
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user