using System.Threading; using System.Threading.Tasks; namespace PhoenixLib.ServiceBus { public interface IMessagePublisher where T : IMessage { /// /// Publishes the given event /// /// /// /// Task PublishAsync(T notification, CancellationToken token = default); } }