acc0d44c7c
Internal service bus support enabled Added quartz support Reconfigured extensions
11 lines
400 B
C#
11 lines
400 B
C#
namespace LiteCharms.Abstractions;
|
|
|
|
public interface IJobOrchestrator
|
|
{
|
|
Task SendAsync<TNotification>(TNotification notification, CancellationToken cancellationToken = default)
|
|
where TNotification : IEvent;
|
|
|
|
Task ScheduleAsync<TNotification>(TNotification notification, string cronExpression, CancellationToken cancellationToken = default)
|
|
where TNotification : IEvent;
|
|
}
|