Files
git.stella-ops.org/src/JobEngine/StellaOps.Scheduler.WebService/GraphJobs/IGraphJobCompletionPublisher.cs

7 lines
208 B
C#

namespace StellaOps.Scheduler.WebService.GraphJobs;
public interface IGraphJobCompletionPublisher
{
Task PublishAsync(GraphJobCompletionNotification notification, CancellationToken cancellationToken);
}