femto-backend/Femto.Common/Infrastructure/Outbox/IOutboxMessageHandler.cs

8 lines
No EOL
219 B
C#

using MediatR;
namespace Femto.Common.Infrastructure.Outbox;
public interface IOutboxMessageHandler
{
Task Publish<TNotification>(TNotification notification, CancellationToken executionContextCancellationToken);
}