ITriggerListenerTriggerComplete Method

Quartz.NET 3.0 API Documentation
Called by the IScheduler when a ITrigger has fired, it's associated IJobDetail has been executed, and it's Triggered(ICalendar) method has been called.

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

C#
Task TriggerComplete(
	ITrigger trigger,
	IJobExecutionContext context,
	SchedulerInstruction triggerInstructionCode,
	CancellationToken cancellationToken = null
)

Parameters

trigger
Type: QuartzITrigger
The ITrigger that was fired.
context
Type: QuartzIJobExecutionContext
The IJobExecutionContext that was passed to the IJob'sExecute(IJobExecutionContext) method.
triggerInstructionCode
Type: QuartzSchedulerInstruction
The result of the call on the ITrigger'sTriggered(ICalendar) method.
cancellationToken (Optional)
Type: System.ThreadingCancellationToken
The cancellation instruction.

Return Value

Type: Task

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

See Also

Reference