IJobStore TriggersFired Method Quartz.NET 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: 2.2.1.400
Syntax

IList<TriggerFiredResult> TriggersFired(
	IList<IOperableTrigger> triggers
)

Parameters

triggers
Type: System.Collections.Generic IList IOperableTrigger 

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

Return Value

Type: IList TriggerFiredResult 
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