Package | Description |
---|---|
org.quartz |
The main package of Quartz, containing the client-side interfaces.
|
org.quartz.core |
Contains the core classes and interfaces for the Quartz job scheduler.
|
org.quartz.ee.jta | |
org.quartz.impl |
Contains implementations of the SchedulerFactory, JobStore, ThreadPool, and
other interfaces required by the org.quartz.core.QuartzScheduler.
|
org.quartz.listeners |
Modifier and Type | Method and Description |
---|---|
List<SchedulerListener> |
ListenerManager.getSchedulerListeners()
Get a List containing all of the
s
registered with the Scheduler , in the order in which they were registered. |
Modifier and Type | Method and Description |
---|---|
void |
ListenerManager.addSchedulerListener(SchedulerListener schedulerListener)
Register the given
with the
Scheduler . |
boolean |
ListenerManager.removeSchedulerListener(SchedulerListener schedulerListener)
Remove the given
from the
Scheduler . |
Modifier and Type | Class and Description |
---|---|
class |
JobRunShell
JobRunShell instances are responsible for providing the 'safe' environment
for
Job s to run in, and for performing all of the work of
executing the Job , catching ANY thrown exceptions, updating
the Trigger with the Job 's completion code,
etc. |
class |
QuartzSchedulerMBeanImpl |
class |
SampledStatisticsImpl |
Modifier and Type | Method and Description |
---|---|
List<SchedulerListener> |
QuartzScheduler.getInternalSchedulerListeners()
Get a List containing all of the internal
s
registered with the Scheduler . |
List<SchedulerListener> |
ListenerManagerImpl.getSchedulerListeners() |
Modifier and Type | Method and Description |
---|---|
void |
QuartzScheduler.addInternalSchedulerListener(SchedulerListener schedulerListener)
Register the given
with the
Scheduler 's list of internal listeners. |
void |
ListenerManagerImpl.addSchedulerListener(SchedulerListener schedulerListener) |
boolean |
QuartzScheduler.removeInternalSchedulerListener(SchedulerListener schedulerListener)
Remove the given
from the
Scheduler 's list of internal listeners. |
boolean |
ListenerManagerImpl.removeSchedulerListener(SchedulerListener schedulerListener) |
Modifier and Type | Class and Description |
---|---|
class |
JTAJobRunShell
An extension of
that
begins an XA transaction before executing the Job, and commits (or
rolls-back) the transaction after execution completes. |
Modifier and Type | Class and Description |
---|---|
class |
QuartzServer
Instantiates an instance of Quartz Scheduler as a stand-alone program, if
the scheduler is configured for RMI it will be made available.
|
Modifier and Type | Class and Description |
---|---|
class |
BroadcastSchedulerListener
Holds a List of references to SchedulerListener instances and broadcasts all
events to them (in order).
|
class |
SchedulerListenerSupport
A helpful abstract base class for implementors of
. |
Modifier and Type | Method and Description |
---|---|
List<SchedulerListener> |
BroadcastSchedulerListener.getListeners() |
Modifier and Type | Method and Description |
---|---|
void |
BroadcastSchedulerListener.addListener(SchedulerListener listener) |
boolean |
BroadcastSchedulerListener.removeListener(SchedulerListener listener) |
Constructor and Description |
---|
BroadcastSchedulerListener(List<SchedulerListener> listeners)
Construct an instance with the given List of listeners.
|
Copyright 2001-2019, Terracotta, Inc.