Package | Description |
---|---|
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.impl.jdbcjobstore | |
org.quartz.impl.triggers |
This package contains Trigger implementations that ship with Quartz.
|
org.quartz.listeners | |
org.quartz.plugins.history | |
org.quartz.plugins.interrupt | |
org.quartz.simpl |
Contains simple / light-weight implementations (with no dependencies on
external libraries) of interfaces required by the
org.quartz.core.QuartzScheduler.
|
org.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.
|
org.terracotta.quartz |
Modifier and Type | Method and Description |
---|---|
static Trigger.CompletedExecutionInstruction |
Trigger.CompletedExecutionInstruction.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Trigger.CompletedExecutionInstruction[] |
Trigger.CompletedExecutionInstruction.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
void |
TriggerListener.triggerComplete(Trigger trigger,
JobExecutionContext context,
Trigger.CompletedExecutionInstruction triggerInstructionCode)
|
Modifier and Type | Method and Description |
---|---|
protected void |
QuartzScheduler.notifyJobStoreJobComplete(OperableTrigger trigger,
JobDetail detail,
Trigger.CompletedExecutionInstruction instCode) |
protected void |
QuartzScheduler.notifyJobStoreJobVetoed(OperableTrigger trigger,
JobDetail detail,
Trigger.CompletedExecutionInstruction instCode) |
void |
QuartzScheduler.notifyTriggerListenersComplete(JobExecutionContext jec,
Trigger.CompletedExecutionInstruction instCode) |
Modifier and Type | Method and Description |
---|---|
protected void |
JobStoreSupport.triggeredJobComplete(Connection conn,
OperableTrigger trigger,
JobDetail jobDetail,
Trigger.CompletedExecutionInstruction triggerInstCode) |
void |
JobStoreSupport.triggeredJobComplete(OperableTrigger trigger,
JobDetail jobDetail,
Trigger.CompletedExecutionInstruction 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 |
---|---|
Trigger.CompletedExecutionInstruction |
AbstractTrigger.executionComplete(JobExecutionContext context,
JobExecutionException result)
This method should not be used by the Quartz client.
|
Modifier and Type | Method and Description |
---|---|
void |
TriggerListenerSupport.triggerComplete(Trigger trigger,
JobExecutionContext context,
Trigger.CompletedExecutionInstruction triggerInstructionCode) |
void |
BroadcastTriggerListener.triggerComplete(Trigger trigger,
JobExecutionContext context,
Trigger.CompletedExecutionInstruction triggerInstructionCode) |
Modifier and Type | Method and Description |
---|---|
void |
LoggingTriggerHistoryPlugin.triggerComplete(Trigger trigger,
JobExecutionContext context,
Trigger.CompletedExecutionInstruction triggerInstructionCode) |
Modifier and Type | Method and Description |
---|---|
void |
JobInterruptMonitorPlugin.triggerComplete(Trigger trigger,
JobExecutionContext context,
Trigger.CompletedExecutionInstruction triggerInstructionCode) |
Modifier and Type | Method and Description |
---|---|
void |
RAMJobStore.triggeredJobComplete(OperableTrigger trigger,
JobDetail jobDetail,
Trigger.CompletedExecutionInstruction 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 |
---|---|
Trigger.CompletedExecutionInstruction |
OperableTrigger.executionComplete(JobExecutionContext context,
JobExecutionException result)
This method should not be used by the Quartz client.
|
Modifier and Type | Method and Description |
---|---|
void |
JobStore.triggeredJobComplete(OperableTrigger trigger,
JobDetail jobDetail,
Trigger.CompletedExecutionInstruction 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. |
Modifier and Type | Method and Description |
---|---|
void |
PlainTerracottaJobStore.triggeredJobComplete(OperableTrigger trigger,
JobDetail jobDetail,
Trigger.CompletedExecutionInstruction triggerInstCode) |
void |
AbstractTerracottaJobStore.triggeredJobComplete(OperableTrigger trigger,
JobDetail jobDetail,
Trigger.CompletedExecutionInstruction instruction) |
Copyright 2001-2019, Terracotta, Inc.