Delegate JobExecutionDelegate
- Namespace
- Quartz
- Assembly
- Quartz.dll
The rest of the job execution pipeline, as a middleware sees it: the middleware registered after this one, ending in the job itself.
public delegate ValueTask JobExecutionDelegate(IJobExecutionContext context, CancellationToken cancellationToken)
Parameters
contextIJobExecutionContextThe firing being executed.
cancellationTokenCancellationTokenSignalled when this execution is interrupted. The same token CancellationToken carries.
Returns
- ValueTask
- The rest of the job execution pipeline, as a middleware sees it: the middleware registered after this one, ending in the job itself.
Remarks
The cancellation token has no default. A middleware is handed one and is expected to pass it on, so leaving it out would have to be written out rather than being what happens when nothing is said.