| 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.triggers |
This package contains Trigger implementations that ship with Quartz.
|
| com.helger.quartz.listeners | |
| com.helger.quartz.plugins.history | |
| com.helger.quartz.simpl |
Contains simple / light-weight implementations (with no dependencies on
external libraries) of interfaces required by the
org.quartz.core.QuartzScheduler.
|
| 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 |
|---|---|
static ITrigger.ECompletedExecutionInstruction |
ITrigger.ECompletedExecutionInstruction.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ITrigger.ECompletedExecutionInstruction[] |
ITrigger.ECompletedExecutionInstruction.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
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. |
| Modifier and Type | Method and Description |
|---|---|
protected void |
QuartzScheduler.notifyJobStoreJobComplete(IOperableTrigger trigger,
IJobDetail detail,
ITrigger.ECompletedExecutionInstruction instCode) |
protected void |
QuartzScheduler.notifyJobStoreJobVetoed(IOperableTrigger trigger,
IJobDetail detail,
ITrigger.ECompletedExecutionInstruction instCode) |
void |
QuartzScheduler.notifyTriggerListenersComplete(IJobExecutionContext jec,
ITrigger.ECompletedExecutionInstruction instCode) |
| 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 |
BroadcastTriggerListener.triggerComplete(ITrigger trigger,
IJobExecutionContext context,
ITrigger.ECompletedExecutionInstruction triggerInstructionCode) |
| Modifier and Type | Method and Description |
|---|---|
void |
LoggingTriggerHistoryPlugin.triggerComplete(ITrigger trigger,
IJobExecutionContext context,
ITrigger.ECompletedExecutionInstruction triggerInstructionCode) |
| Modifier and Type | Method and Description |
|---|---|
void |
RAMJobStore.triggeredJobComplete(IOperableTrigger trigger,
IJobDetail jobDetail,
ITrigger.ECompletedExecutionInstruction triggerInstCode)
Inform the
JobStore that the scheduler has completed the
firing of the given Trigger (and the execution its associated
Job), and that the
in the given
JobDetail should be updated if the Job is
stateful. |
| Modifier and Type | Method and Description |
|---|---|
ITrigger.ECompletedExecutionInstruction |
IOperableTrigger.executionComplete(IJobExecutionContext aContext,
JobExecutionException result)
This method should not be used by the Quartz client.
|
| Modifier and Type | Method and Description |
|---|---|
void |
IJobStore.triggeredJobComplete(IOperableTrigger trigger,
IJobDetail jobDetail,
ITrigger.ECompletedExecutionInstruction triggerInstCode)
Inform the
JobStore that the scheduler has completed the
firing of the given Trigger (and the execution of its
associated Job completed, threw an exception, or was vetoed),
and that the in the given
JobDetail should be updated if the Job is
stateful. |
Copyright © 2016–2021 Philip Helger. All rights reserved.