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.core.jmx | |
org.quartz.impl |
Contains implementations of the SchedulerFactory, JobStore, ThreadPool, and
other interfaces required by the org.quartz.core.QuartzScheduler.
|
org.quartz.impl.triggers |
This package contains Trigger implementations that ship with Quartz.
|
org.quartz.jobs | |
org.quartz.jobs.ee.ejb | |
org.quartz.jobs.ee.jms | |
org.quartz.jobs.ee.jmx | |
org.quartz.jobs.ee.mail | |
org.quartz.listeners | |
org.quartz.plugins.history | |
org.quartz.plugins.interrupt | |
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 |
---|---|
List<JobExecutionContext> |
Scheduler.getCurrentlyExecutingJobs()
Return a list of
JobExecutionContext objects that
represent all currently executing Jobs in this Scheduler instance. |
Modifier and Type | Method and Description |
---|---|
void |
Job.execute(JobExecutionContext context)
|
void |
JobListener.jobExecutionVetoed(JobExecutionContext context)
Called by the
when a
was about to be executed (an associated
has occurred), but a vetoed it's
execution. |
void |
JobListener.jobToBeExecuted(JobExecutionContext context)
|
void |
JobListener.jobWasExecuted(JobExecutionContext context,
JobExecutionException jobException)
|
void |
TriggerListener.triggerComplete(Trigger trigger,
JobExecutionContext context,
Trigger.CompletedExecutionInstruction triggerInstructionCode)
|
void |
TriggerListener.triggerFired(Trigger trigger,
JobExecutionContext context)
|
boolean |
TriggerListener.vetoJobExecution(Trigger trigger,
JobExecutionContext context)
|
Modifier and Type | Method and Description |
---|---|
List<JobExecutionContext> |
RemotableQuartzScheduler.getCurrentlyExecutingJobs() |
List<JobExecutionContext> |
QuartzScheduler.getCurrentlyExecutingJobs()
Return a list of
JobExecutionContext objects that
represent all currently executing Jobs in this Scheduler instance. |
Modifier and Type | Method and Description |
---|---|
static CompositeData |
JobExecutionContextSupport.toCompositeData(JobExecutionContext jec) |
Modifier and Type | Method and Description |
---|---|
static TabularData |
JobExecutionContextSupport.toTabularData(List<JobExecutionContext> executingJobs) |
Modifier and Type | Class and Description |
---|---|
class |
JobExecutionContextImpl |
Modifier and Type | Method and Description |
---|---|
List<JobExecutionContext> |
StdScheduler.getCurrentlyExecutingJobs()
Calls the equivalent method on the 'proxied'
QuartzScheduler . |
List<JobExecutionContext> |
RemoteScheduler.getCurrentlyExecutingJobs()
Calls the equivalent method on the 'proxied'
QuartzScheduler . |
List<JobExecutionContext> |
RemoteMBeanScheduler.getCurrentlyExecutingJobs()
Calls the equivalent method on the 'proxied'
QuartzScheduler . |
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 |
NoOpJob.execute(JobExecutionContext context)
Do nothing.
|
void |
NativeJob.execute(JobExecutionContext context) |
void |
FileScanJob.execute(JobExecutionContext context) |
void |
DirectoryScanJob.execute(JobExecutionContext context) |
Modifier and Type | Method and Description |
---|---|
void |
EJBInvokerJob.execute(JobExecutionContext context) |
void |
EJB3InvokerJob.execute(JobExecutionContext context) |
Modifier and Type | Method and Description |
---|---|
void |
SendTopicMessageJob.execute(JobExecutionContext jobCtx) |
void |
SendQueueMessageJob.execute(JobExecutionContext jobCtx) |
void |
SendDestinationMessageJob.execute(JobExecutionContext jobCtx) |
Modifier and Type | Method and Description |
---|---|
void |
JMXInvokerJob.execute(JobExecutionContext context) |
Modifier and Type | Method and Description |
---|---|
void |
SendMailJob.execute(JobExecutionContext context) |
Modifier and Type | Method and Description |
---|---|
void |
JobListenerSupport.jobExecutionVetoed(JobExecutionContext context) |
void |
BroadcastJobListener.jobExecutionVetoed(JobExecutionContext context) |
void |
JobListenerSupport.jobToBeExecuted(JobExecutionContext context) |
void |
BroadcastJobListener.jobToBeExecuted(JobExecutionContext context) |
void |
JobListenerSupport.jobWasExecuted(JobExecutionContext context,
JobExecutionException jobException) |
void |
JobChainingJobListener.jobWasExecuted(JobExecutionContext context,
JobExecutionException jobException) |
void |
BroadcastJobListener.jobWasExecuted(JobExecutionContext context,
JobExecutionException jobException) |
void |
TriggerListenerSupport.triggerComplete(Trigger trigger,
JobExecutionContext context,
Trigger.CompletedExecutionInstruction triggerInstructionCode) |
void |
BroadcastTriggerListener.triggerComplete(Trigger trigger,
JobExecutionContext context,
Trigger.CompletedExecutionInstruction triggerInstructionCode) |
void |
TriggerListenerSupport.triggerFired(Trigger trigger,
JobExecutionContext context) |
void |
BroadcastTriggerListener.triggerFired(Trigger trigger,
JobExecutionContext context) |
boolean |
TriggerListenerSupport.vetoJobExecution(Trigger trigger,
JobExecutionContext context) |
boolean |
BroadcastTriggerListener.vetoJobExecution(Trigger trigger,
JobExecutionContext context) |
Modifier and Type | Method and Description |
---|---|
void |
LoggingJobHistoryPlugin.jobExecutionVetoed(JobExecutionContext context) |
void |
LoggingJobHistoryPlugin.jobToBeExecuted(JobExecutionContext context) |
void |
LoggingJobHistoryPlugin.jobWasExecuted(JobExecutionContext context,
JobExecutionException jobException) |
void |
LoggingTriggerHistoryPlugin.triggerComplete(Trigger trigger,
JobExecutionContext context,
Trigger.CompletedExecutionInstruction triggerInstructionCode) |
void |
LoggingTriggerHistoryPlugin.triggerFired(Trigger trigger,
JobExecutionContext context) |
boolean |
LoggingTriggerHistoryPlugin.vetoJobExecution(Trigger trigger,
JobExecutionContext context) |
Modifier and Type | Method and Description |
---|---|
void |
JobInterruptMonitorPlugin.triggerComplete(Trigger trigger,
JobExecutionContext context,
Trigger.CompletedExecutionInstruction triggerInstructionCode) |
void |
JobInterruptMonitorPlugin.triggerFired(Trigger trigger,
JobExecutionContext context) |
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 |
PlainTerracottaJobStore.jobExecutionVetoed(JobExecutionContext context) |
void |
PlainTerracottaJobStore.jobToBeExecuted(JobExecutionContext context) |
void |
PlainTerracottaJobStore.jobWasExecuted(JobExecutionContext context,
JobExecutionException jobException) |
Copyright 2001-2019, Terracotta, Inc.