|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use JobListener | |
---|---|
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.listeners | |
org.quartz.plugins.history | |
org.terracotta.quartz |
Uses of JobListener in org.quartz |
---|
Methods in org.quartz that return JobListener | |
---|---|
JobListener |
ListenerManager.getJobListener(String name)
Get the that has the given name. |
Methods in org.quartz that return types with arguments of type JobListener | |
---|---|
List<JobListener> |
ListenerManager.getJobListeners()
Get a List containing all of the s in
the Scheduler , in the order in which they were registered. |
Methods in org.quartz with parameters of type JobListener | |
---|---|
void |
ListenerManager.addJobListener(JobListener jobListener)
Add the given to the Scheduler ,
and register it to receive events for all Jobs. |
void |
ListenerManager.addJobListener(JobListener jobListener,
List<Matcher<JobKey>> matchers)
Add the given to the Scheduler ,
and register it to receive events for Jobs that are matched by ANY of the
given Matchers. |
void |
ListenerManager.addJobListener(JobListener jobListener,
Matcher<JobKey>... matchers)
Add the given to the Scheduler ,
and register it to receive events for Jobs that are matched by ANY of the
given Matchers. |
void |
ListenerManager.addJobListener(JobListener jobListener,
Matcher<JobKey> matcher)
Add the given to the Scheduler ,
and register it to receive events for Jobs that are matched by the
given Matcher. |
Uses of JobListener in org.quartz.core |
---|
Classes in org.quartz.core that implement JobListener | |
---|---|
class |
QuartzSchedulerMBeanImpl
|
class |
SampledStatisticsImpl
|
Methods in org.quartz.core that return JobListener | |
---|---|
JobListener |
QuartzScheduler.getInternalJobListener(String name)
Get the internal
that has the given name. |
JobListener |
ListenerManagerImpl.getJobListener(String name)
|
Methods in org.quartz.core that return types with arguments of type JobListener | |
---|---|
List<JobListener> |
QuartzScheduler.getInternalJobListeners()
Get a List containing all of the s
in the Scheduler 's internal list. |
List<JobListener> |
ListenerManagerImpl.getJobListeners()
|
Methods in org.quartz.core with parameters of type JobListener | |
---|---|
void |
QuartzScheduler.addInternalJobListener(JobListener jobListener)
Add the given to the
Scheduler 's internal list. |
void |
ListenerManagerImpl.addJobListener(JobListener jobListener)
|
void |
ListenerManagerImpl.addJobListener(JobListener jobListener,
List<Matcher<JobKey>> matchers)
|
void |
ListenerManagerImpl.addJobListener(JobListener jobListener,
Matcher<JobKey>... matchers)
|
void |
ListenerManagerImpl.addJobListener(JobListener jobListener,
Matcher<JobKey> matcher)
|
Uses of JobListener in org.quartz.listeners |
---|
Classes in org.quartz.listeners that implement JobListener | |
---|---|
class |
BroadcastJobListener
Holds a List of references to JobListener instances and broadcasts all events to them (in order). |
class |
JobChainingJobListener
Keeps a collection of mappings of which Job to trigger after the completion of a given job. |
class |
JobListenerSupport
A helpful abstract base class for implementors of . |
Methods in org.quartz.listeners that return types with arguments of type JobListener | |
---|---|
List<JobListener> |
BroadcastJobListener.getListeners()
|
Methods in org.quartz.listeners with parameters of type JobListener | |
---|---|
void |
BroadcastJobListener.addListener(JobListener listener)
|
boolean |
BroadcastJobListener.removeListener(JobListener listener)
|
Constructor parameters in org.quartz.listeners with type arguments of type JobListener | |
---|---|
BroadcastJobListener(String name,
List<JobListener> listeners)
Construct an instance with the given name, and List of listeners. |
Uses of JobListener in org.quartz.plugins.history |
---|
Classes in org.quartz.plugins.history that implement JobListener | |
---|---|
class |
LoggingJobHistoryPlugin
Logs a history of all job executions (and execution vetos) via the Jakarta Commons-Logging framework. |
Uses of JobListener in org.terracotta.quartz |
---|
Subinterfaces of JobListener in org.terracotta.quartz | |
---|---|
interface |
TerracottaJobStoreExtensions
This interface defines convenience methods on the terracotta job store implementation Without this interface we would need to use reflection to invoke these "extra" methods (ie. |
Classes in org.terracotta.quartz that implement JobListener | |
---|---|
class |
PlainTerracottaJobStore<T extends ClusteredJobStore>
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |