IJobExecutionContext Interface

Quartz.NET 3.0 API Documentation
A context bundle containing handles to various environment information, that is given to a JobDetail instance as it is executed, and to a ITrigger instance after the execution completes.

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

C#
public interface IJobExecutionContext

The IJobExecutionContext type exposes the following members.

Properties

  NameDescription
Public propertyCalendar
Get a handle to the ICalendar referenced by the ITrigger instance that fired the IJob.
Public propertyCancellationToken
Returns the cancellation token which will be cancelled when the job cancellation has been requested via Interrupt(JobKey, CancellationToken) or Interrupt(String, CancellationToken).
Public propertyFireInstanceId
Get the unique Id that identifies this particular firing instance of the trigger that triggered this job execution. It is unique to this JobExecutionContext instance as well.
Public propertyFireTimeUtc
The actual time the trigger fired. For instance the scheduled time may have been 10:00:00 but the actual fire time may have been 10:00:03 if the scheduler was too busy.
Public propertyJobDetail
Get the JobDetail associated with the IJob.
Public propertyJobInstance
Get the instance of the IJob that was created for this execution.

Note: The Job instance is not available through remote scheduler interfaces.

Public propertyJobRunTime
The amount of time the job ran for. The returned value will be MinValue until the job has actually completed (or thrown an exception), and is therefore generally only useful to IJobListeners and ITriggerListeners.
Public propertyMergedJobDataMap
Get the convenience JobDataMap of this execution context.
Public propertyNextFireTimeUtc
Gets the next fire time.
Public propertyPreviousFireTimeUtc
Gets the previous fire time.
Public propertyRecovering
If the IJob is being re-executed because of a 'recovery' situation, this method will return .
Public propertyRecoveringTriggerKey
Returns the TriggerKey of the originally scheduled and now recovering job.
Public propertyRefireCount
Gets the refire count.
Public propertyResult
Returns the result (if any) that the IJob set before its execution completed (the type of object set as the result is entirely up to the particular job).
Public propertyScheduledFireTimeUtc
The scheduled time the trigger fired for. For instance the scheduled time may have been 10:00:00 but the actual fire time may have been 10:00:03 if the scheduler was too busy.
Public propertyScheduler
Get a handle to the IScheduler instance that fired the IJob.
Public propertyTrigger
Get a handle to the ITrigger instance that fired the IJob.
Top
Methods

  NameDescription
Public methodGet
Get the value with the given key from the context's data map.
Public methodPut
Put the specified value into the context's data map with the given key. Possibly useful for sharing data between listeners and jobs.

NOTE: this data is volatile - it is lost after the job execution completes, and all TriggerListeners and JobListeners have been notified.

Top
See Also

Reference