Enum FireInstanceState
- Namespace
- Quartz
- Assembly
- Quartz.dll
How far along a FireInstance is: reserved by a node, or running.
public enum FireInstanceState
Fields
Acquired = 0A node has reserved the firing but has not started the job yet. The job is not known at this point, so JobKey is null.
The window is normally very short. It is visible at all because a reservation is durable: a node that dies between acquiring and firing leaves the row behind until cluster recovery clears it.
Executing = 1The job is running.
Remarks
Deliberately store-neutral and much smaller than the ADO.NET store's StoredTriggerState: the two states below are the only ones a listing can meaningfully report, and every job store can answer them.