Files
components/LiteCharms.Features/Quartz/Abstractions/IJobOrchestrator.cs
T
2026-05-13 20:06:24 +02:00

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;
}