ITrigger InterfaceQuartz.NET API Documentation
The base interface with properties common to all ITriggers - use TriggerBuilder to instantiate an actual Trigger.

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

public interface ITrigger : ICloneable, 
	IComparable<ITrigger>
Remarks

ITriggers have a TriggerKey associated with them, which should uniquely identify them within a single IScheduler.

ITriggers are the 'mechanism' by which IJob s are scheduled. Many ITrigger s can point to the same IJob, but a single ITrigger can only point to one IJob.

Triggers can 'send' parameters/data to IJobs by placing contents into the JobDataMap on the ITrigger.

See Also