Conveys the detail properties of a given Job
instance.
Quartz does not store an actual instance of a Job
class, but instead allows you to define an instance of one, through the use of a JobDetail
.
Job
s have a name and group associated with them, which should uniquely identify them within a single {@link Scheduler}
.
Trigger
s are the 'mechanism' by which Job
s are scheduled. Many Trigger
s can point to the same Job
, but a single Trigger
can only point to one Job
.
|
|