Table of Contents

Class OperationName.Job

Namespace
Quartz.Diagnostics
Assembly
Quartz.dll

The names of the spans covering one firing of a job.

public static class OperationName.Job
Inheritance
OperationName.Job
Inherited Members

Fields

Execute

The span covering a job's execution, from the moment the scheduler has a job instance to the moment its Execute returns or throws.

public const string Execute = "Quartz.Job.Execute"

Field Value

string

Veto

The span covering a vetoed fire: the trigger listeners said no, and the job listeners are being told so instead of the job being run.

public const string Veto = "Quartz.Job.Veto"

Field Value

string

Remarks

Its value used to be Quartz.Job.Vetoed while the constant was named Veto, so the one name in this class that did not match its value was the one nobody could see. Every other operation here is named for the operation, in the present tense, as Execute is.