JobDetailImpl ClassQuartz.NET API Documentation
Conveys the detail properties of a given job instance.
Inheritance Hierarchy

System Object
  Quartz.Impl JobDetailImpl

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

[SerializableAttribute]
public class JobDetailImpl : IJobDetail, 
	ICloneable
Remarks

Quartz does not store an actual instance of a IJob type, but instead allows you to define an instance of one, through the use of a IJobDetail.

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

ITrigger s 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.

See Also