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.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.
|
Constructor and Description |
---|
JobExecutionContext(Scheduler scheduler,
TriggerFiredBundle firedBundle,
Job job)
Create a JobExcecutionContext with the given context data.
|
Modifier and Type | Method and Description |
---|---|
void |
QuartzSchedulerThread.errorTriggerRetryLoop(TriggerFiredBundle bndle) |
void |
JobRunShell.initialize(QuartzScheduler qs,
TriggerFiredBundle firedBundle) |
Modifier and Type | Method and Description |
---|---|
TriggerFiredBundle |
JobStoreSupport.triggerFired(SchedulingContext ctxt,
Trigger trigger)
Inform the
JobStore that the scheduler is now firing the
given Trigger (executing its associated Job ),
that it had previously acquired (reserved). |
Modifier and Type | Method and Description |
---|---|
TriggerFiredBundle |
RAMJobStore.triggerFired(SchedulingContext ctxt,
Trigger trigger)
Inform the
JobStore that the scheduler is now firing the
given Trigger (executing its associated Job ),
that it had previously acquired (reserved). |
Modifier and Type | Method and Description |
---|---|
Job |
SimpleJobFactory.newJob(TriggerFiredBundle bundle) |
Job |
PropertySettingJobFactory.newJob(TriggerFiredBundle bundle) |
Modifier and Type | Method and Description |
---|---|
TriggerFiredBundle |
JobStore.triggerFired(SchedulingContext ctxt,
Trigger trigger)
Inform the
JobStore that the scheduler is now firing the
given Trigger (executing its associated Job ),
that it had previously acquired (reserved). |
Modifier and Type | Method and Description |
---|---|
Job |
JobFactory.newJob(TriggerFiredBundle bundle)
Called by the scheduler at the time of the trigger firing, in order to
produce a
Job instance on which to call execute. |