ITriggerListenerTriggerMisfired Method

Quartz.NET 3.0 API Documentation
Called by the IScheduler when a ITrigger has misfired.

Consideration should be given to how much time is spent in this method, as it will affect all triggers that are misfiring. If you have lots of triggers misfiring at once, it could be an issue it this method does a lot.

Namespace:  Quartz
Assembly:  Quartz (in Quartz.dll) Version: 3.0.0
Syntax

C#
Task TriggerMisfired(
	ITrigger trigger,
	CancellationToken cancellationToken = null
)

Parameters

trigger
Type: QuartzITrigger
The ITrigger that has misfired.
cancellationToken (Optional)
Type: System.ThreadingCancellationToken
The cancellation instruction.

Return Value

Type: Task

[Missing <returns> documentation for "M:Quartz.ITriggerListener.TriggerMisfired(Quartz.ITrigger,System.Threading.CancellationToken)"]

See Also

Reference