Package org.quartz.jobs

  • Interface Summary
    Interface Description
    InterruptableJob
    The interface to be implemented by Jobs that provide a mechanism for having their execution interrupted.
    Job
    The interface to be implemented by classes which represent a 'job' to be performed.
    JobDetail
    Conveys the detail properties of a given Job instance.
    JobFactory
    A JobFactory is responsible for producing instances of Job classes.
  • Class Summary
    Class Description
    JobDataMap
    Holds state information for Job instances.
    JobDetailImpl
    Conveys the detail properties of a given Job instance.
    NoOpJob
    An implementation of Job, that does absolutely nothing - useful for system which only wish to use TriggerListeners and JobListeners, rather than writing Jobs that perform work.
    SimpleJobFactory
    The default JobFactory used by Quartz - simply calls newInstance() on the job class.