|
Interface Summary |
| Calendar |
An interface to be implemented by objects that define spaces of time during
which an associated Trigger may fire. |
| 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. |
| JobListener |
The interface to be implemented by classes that want to be informed when a
JobDetail executes. |
| Scheduler |
This is the main interface of a Quartz Scheduler. |
| SchedulerFactory |
Provides a mechanism for obtaining client-usable handles to Scheduler
instances. |
| SchedulerListener |
The interface to be implemented by classes that want to be informed of major
Scheduler events. |
| StatefulJob |
A marker interface for JobDetail s that
wish to have their state maintained between executions. |
| TriggerListener |
The interface to be implemented by classes that want to be informed when a
Trigger fires. |
|
Exception Summary |
| CriticalSchedulerException |
An exception that is thrown to indicate that there has been a critical
failure within the scheduler's core services (such as loss of database
connectivity). |
| JobExecutionException |
An exception that can be thrown by a Job
to indicate to the Quartz Scheduler that an error
occured while executing, and whether or not the Job requests
to be re-fired immediately (using the same JobExecutionContext,
or whether it wants to be unscheduled. |
| JobPersistenceException |
An exception that is thrown to indicate that there has been a failure in the
scheduler's underlying persistence mechanism. |
| ObjectAlreadyExistsException |
An exception that is thrown to indicate that an attempt to store a new
object (i.e. |
| SchedulerConfigException |
An exception that is thrown to indicate that there is a misconfiguration of
the SchedulerFactory- or one of the components it
configures. |
| SchedulerException |
Base class for exceptions thrown by the Quartz Scheduler. |
| UnableToInterruptJobException |
An exception that is thrown to indicate that a call to
InterruptableJob.interrupt() failed without interrupting the Job. |