13 lines
551 B
C#
13 lines
551 B
C#
namespace LiteCharms.Features.Abstractions;
|
|
|
|
public interface IJobOrchestrator
|
|
{
|
|
ValueTask SendAsync<TNotification>(TNotification notification, CancellationToken cancellationToken = default)
|
|
where TNotification : IEvent;
|
|
|
|
ValueTask ScheduleAsync<TNotification>(TNotification notification, string cronExpression, CancellationToken cancellationToken = default)
|
|
where TNotification : IEvent;
|
|
|
|
ValueTask<bool> InterruptAsync(string eventName, string? correlationId = null, CancellationToken cancellationToken = default);
|
|
}
|