IStatefulJob InterfaceQuartz.NET API Documentation
A marker interface for JobDetail s that wish to have their state maintained between executions.

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

public interface IStatefulJob : IJob
Remarks

IStatefulJob instances follow slightly different rules from regular IJob instances. The key difference is that their associated JobDataMap is re-persisted after every execution of the job, thus preserving state for the next execution. The other difference is that stateful jobs are not allowed to Execute concurrently, which means new triggers that occur before the completion of the Execute(JobExecutionContext) method will be delayed.
See Also