Trigger ClassQuartz.NET API Documentation
The base abstract class to be extended by all triggers.
Inheritance Hierarchy

System Object
  Quartz Trigger
    Quartz CronTrigger
    Quartz NthIncludedDayTrigger
    Quartz SimpleTrigger

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

[SerializableAttribute]
public abstract class Trigger : ICloneable, 
	IComparable
Remarks

Triggers have a name and group associated with them, which should uniquely identify them within a single IScheduler.

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

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

See Also