| Package | Description |
|---|---|
| com.helger.quartz |
The main package of Quartz, containing the client-side interfaces.
|
| com.helger.quartz.core |
Contains the core classes and interfaces for the Quartz job scheduler.
|
| com.helger.quartz.impl |
Contains implementations of the SchedulerFactory, JobStore, ThreadPool, and
other interfaces required by the org.quartz.core.QuartzScheduler.
|
| com.helger.quartz.listeners |
| Modifier and Type | Method and Description |
|---|---|
com.helger.commons.collection.impl.ICommonsList<ISchedulerListener> |
IListenerManager.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 |
IListenerManager.addSchedulerListener(ISchedulerListener schedulerListener)
Register the given
with the
Scheduler. |
boolean |
IListenerManager.removeSchedulerListener(ISchedulerListener 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 |
SampledStatistics |
| Modifier and Type | Method and Description |
|---|---|
com.helger.commons.collection.impl.ICommonsList<ISchedulerListener> |
QuartzScheduler.getInternalSchedulerListeners()
Get a List containing all of the internal
s registered with the
Scheduler. |
com.helger.commons.collection.impl.ICommonsList<ISchedulerListener> |
ListenerManager.getSchedulerListeners() |
| Modifier and Type | Method and Description |
|---|---|
void |
QuartzScheduler.addInternalSchedulerListener(ISchedulerListener schedulerListener)
Register the given
with the
Scheduler's list of internal listeners. |
void |
ListenerManager.addSchedulerListener(ISchedulerListener schedulerListener) |
boolean |
QuartzScheduler.removeInternalSchedulerListener(ISchedulerListener schedulerListener)
Remove the given
from the
Scheduler's list of internal listeners. |
boolean |
ListenerManager.removeSchedulerListener(ISchedulerListener schedulerListener) |
| 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).
|
| Modifier and Type | Method and Description |
|---|---|
com.helger.commons.collection.impl.ICommonsList<ISchedulerListener> |
BroadcastSchedulerListener.getListeners() |
| Modifier and Type | Method and Description |
|---|---|
void |
BroadcastSchedulerListener.addListener(ISchedulerListener listener) |
boolean |
BroadcastSchedulerListener.removeListener(ISchedulerListener listener) |
| Constructor and Description |
|---|
BroadcastSchedulerListener(Iterable<? extends ISchedulerListener> listeners)
Construct an instance with the given List of listeners.
|
Copyright © 2016–2021 Philip Helger. All rights reserved.