IOperableTriggerExecutionComplete Method

Quartz.NET 3.0 API Documentation
This method should not be used by the Quartz client.

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

C#
SchedulerInstruction ExecutionComplete(
	IJobExecutionContext context,
	JobExecutionException result
)

Parameters

context
Type: QuartzIJobExecutionContext
is the IJobExecutionContext that was used by the IJob'sExecute(IJobExecutionContext) method.
result
Type: QuartzJobExecutionException
is the JobExecutionException thrown by the IJob, if any (may be null).

Return Value

Type: SchedulerInstruction
One of the SchedulerInstruction members.
Remarks

Called after the IScheduler has executed the IJobDetail associated with the ITrigger in order to get the final instruction code from the trigger.
See Also

Reference