org.quartz.listeners |
|
Java Source File Name | Type | Comment |
BroadcastSchedulerListener.java | Class | Holds a List of references to SchedulerListener instances and broadcasts all
events to them (in order). |
FilterAndBroadcastJobListener.java | Class | Holds a List of references to JobListener instances and broadcasts all
events to them (in order) - if the event is not excluded via filtering
(read on).
The broadcasting behavior of this listener to delegate listeners may be
more convenient than registering all of the listeners directly with the
Trigger, and provides the flexibility of easily changing which listeners
get notified.
You may also register a number of Regular Expression patterns to match
the events against. |
FilterAndBroadcastTriggerListener.java | Class | Holds a List of references to TriggerListener instances and broadcasts all
events to them (in order) - if the event is not excluded via filtering
(read on).
The broadcasting behavior of this listener to delegate listeners may be
more convenient than registering all of the listeners directly with the
Trigger, and provides the flexibility of easily changing which listeners
get notified.
You may also register a number of Regular Expression patterns to match
the events against. |
JobChainingJobListener.java | Class | Keeps a collection of mappings of which Job to trigger after the completion
of a given job. |
JobListenerSupport.java | Class | A helpful abstract base class for implementors of
org.quartz.JobListener .
The methods in this class are empty so you only need to override the
subset for the
org.quartz.JobListener events
you care about.
You are required to implement
org.quartz.JobListener.getName
to return the unique name of your JobListener . |
SchedulerListenerSupport.java | Class | A helpful abstract base class for implementors of
org.quartz.SchedulerListener . |
TriggerListenerSupport.java | Class | A helpful abstract base class for implementors of
org.quartz.TriggerListener .
The methods in this class are empty so you only need to override the
subset for the
org.quartz.TriggerListener events
you care about.
You are required to implement
org.quartz.TriggerListener.getName
to return the unique name of your TriggerListener . |