IJobStoreTriggersFired Method

Quartz.NET 3.0 API Documentation
Inform the IJobStore that the scheduler is now firing the given ITrigger (executing its associated IJob), that it had previously acquired (reserved).

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

C#
Task<IReadOnlyCollection<TriggerFiredResult>> TriggersFired(
	IReadOnlyCollection<IOperableTrigger> triggers,
	CancellationToken cancellationToken = null
)

Parameters

triggers
Type: System.Collections.GenericIReadOnlyCollectionIOperableTrigger

[Missing <param name="triggers"/> documentation for "M:Quartz.Spi.IJobStore.TriggersFired(System.Collections.Generic.IReadOnlyCollection{Quartz.Spi.IOperableTrigger},System.Threading.CancellationToken)"]

cancellationToken (Optional)
Type: System.ThreadingCancellationToken

[Missing <param name="cancellationToken"/> documentation for "M:Quartz.Spi.IJobStore.TriggersFired(System.Collections.Generic.IReadOnlyCollection{Quartz.Spi.IOperableTrigger},System.Threading.CancellationToken)"]

Return Value

Type: TaskIReadOnlyCollectionTriggerFiredResult
May return null if all the triggers or their calendars no longer exist, or if the trigger was not successfully put into the 'executing' state. Preference is to return an empty list if none of the triggers could be fired.
See Also

Reference