13 lines
457 B
C#
13 lines
457 B
C#
using LiteCharms.Features.Abstractions;
|
|
|
|
namespace LiteCharms.Features.Quartz.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;
|
|
}
|