| 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.impl.triggers |
This package contains Trigger implementations that ship with Quartz.
|
| com.helger.quartz.listeners | |
| com.helger.quartz.plugins.history | |
| com.helger.quartz.spi |
Contains Service Provider Interfaces that can be implemented by those
wishing to create and use custom versions of Quartz back-end/behind-the-scenes
services.
|
| Modifier and Type | Method and Description |
|---|---|
com.helger.commons.collection.impl.ICommonsList<IJobExecutionContext> |
IScheduler.getCurrentlyExecutingJobs()
Return a list of
JobExecutionContext objects that represent
all currently executing Jobs in this Scheduler instance. |
| Modifier and Type | Method and Description |
|---|---|
void |
IJob.execute(IJobExecutionContext context)
|
default void |
IJobListener.jobExecutionVetoed(IJobExecutionContext context)
Called by the
when a
was about to be executed
(an associated has occurred), but a
vetoed it's execution. |
default void |
IJobListener.jobToBeExecuted(IJobExecutionContext context)
Called by the
when a
is about to be executed
(an associated has occurred). |
default void |
IJobListener.jobWasExecuted(IJobExecutionContext context,
JobExecutionException jobException)
Called by the
after a
has been executed, and be
for the associated Trigger's triggered(xx) method
has been called. |
default void |
ITriggerListener.triggerComplete(ITrigger trigger,
IJobExecutionContext context,
ITrigger.ECompletedExecutionInstruction triggerInstructionCode)
Called by the
when a
has fired, it's associated
has been executed, and
it's triggered(xx) method has been called. |
default void |
ITriggerListener.triggerFired(ITrigger trigger,
IJobExecutionContext context)
Called by the
when a
has fired, and it's associated
is about to be executed. |
default boolean |
ITriggerListener.vetoJobExecution(ITrigger trigger,
IJobExecutionContext context)
Called by the
when a
has fired, and it's associated
is about to be executed. |
| Modifier and Type | Method and Description |
|---|---|
com.helger.commons.collection.impl.ICommonsList<IJobExecutionContext> |
IQuartzScheduler.getCurrentlyExecutingJobs() |
com.helger.commons.collection.impl.ICommonsList<IJobExecutionContext> |
QuartzScheduler.getCurrentlyExecutingJobs()
Return a list of
JobExecutionContext objects that represent
all currently executing Jobs in this Scheduler instance. |
| Modifier and Type | Method and Description |
|---|---|
void |
SampledStatistics.jobExecutionVetoed(IJobExecutionContext context) |
void |
SampledStatistics.jobToBeExecuted(IJobExecutionContext context) |
void |
SampledStatistics.jobWasExecuted(IJobExecutionContext context,
JobExecutionException jobException) |
void |
QuartzScheduler.notifyJobListenersToBeExecuted(IJobExecutionContext jec) |
void |
QuartzScheduler.notifyJobListenersWasExecuted(IJobExecutionContext jec,
JobExecutionException je) |
void |
QuartzScheduler.notifyJobListenersWasVetoed(IJobExecutionContext jec) |
void |
QuartzScheduler.notifyTriggerListenersComplete(IJobExecutionContext jec,
ITrigger.ECompletedExecutionInstruction instCode) |
boolean |
QuartzScheduler.notifyTriggerListenersFired(IJobExecutionContext jec) |
| Modifier and Type | Class and Description |
|---|---|
class |
JobExecutionContext |
| Modifier and Type | Method and Description |
|---|---|
com.helger.commons.collection.impl.ICommonsList<IJobExecutionContext> |
StdScheduler.getCurrentlyExecutingJobs()
Calls the equivalent method on the 'proxied'
QuartzScheduler. |
| Modifier and Type | Method and Description |
|---|---|
ITrigger.ECompletedExecutionInstruction |
AbstractTrigger.executionComplete(IJobExecutionContext context,
JobExecutionException result)
This method should not be used by the Quartz client.
|
| Modifier and Type | Method and Description |
|---|---|
void |
BroadcastJobListener.jobExecutionVetoed(IJobExecutionContext context) |
void |
BroadcastJobListener.jobToBeExecuted(IJobExecutionContext context) |
void |
BroadcastJobListener.jobWasExecuted(IJobExecutionContext context,
JobExecutionException jobException) |
void |
JobChainingJobListener.jobWasExecuted(IJobExecutionContext context,
JobExecutionException jobException) |
void |
BroadcastTriggerListener.triggerComplete(ITrigger trigger,
IJobExecutionContext context,
ITrigger.ECompletedExecutionInstruction triggerInstructionCode) |
void |
BroadcastTriggerListener.triggerFired(ITrigger trigger,
IJobExecutionContext context) |
boolean |
BroadcastTriggerListener.vetoJobExecution(ITrigger trigger,
IJobExecutionContext context) |
| Modifier and Type | Method and Description |
|---|---|
void |
LoggingJobHistoryPlugin.jobExecutionVetoed(IJobExecutionContext context) |
void |
LoggingJobHistoryPlugin.jobToBeExecuted(IJobExecutionContext context) |
void |
LoggingJobHistoryPlugin.jobWasExecuted(IJobExecutionContext context,
JobExecutionException jobException) |
void |
LoggingTriggerHistoryPlugin.triggerComplete(ITrigger trigger,
IJobExecutionContext context,
ITrigger.ECompletedExecutionInstruction triggerInstructionCode) |
void |
LoggingTriggerHistoryPlugin.triggerFired(ITrigger trigger,
IJobExecutionContext context) |
boolean |
LoggingTriggerHistoryPlugin.vetoJobExecution(ITrigger trigger,
IJobExecutionContext context) |
| Modifier and Type | Method and Description |
|---|---|
ITrigger.ECompletedExecutionInstruction |
IOperableTrigger.executionComplete(IJobExecutionContext aContext,
JobExecutionException result)
This method should not be used by the Quartz client.
|
Copyright © 2016–2021 Philip Helger. All rights reserved.