| 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.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 |
|---|---|
JobDataMap |
JobDataMap.getClone() |
static JobDataMap |
QCloneUtils.getClone(JobDataMap x) |
JobDataMap |
IJobDetail.getJobDataMap()
Get the
JobDataMap that is associated with the
Job. |
JobDataMap |
ITrigger.getJobDataMap()
Get the
JobDataMap that is associated with the
Trigger. |
JobDataMap |
IJobExecutionContext.getMergedJobDataMap()
Get the convenience
JobDataMap of this execution context. |
| Modifier and Type | Method and Description |
|---|---|
static JobDataMap |
QCloneUtils.getClone(JobDataMap x) |
JobBuilder |
JobBuilder.setJobData(JobDataMap newJobDataMap)
|
void |
IScheduler.triggerJob(JobKey jobKey,
JobDataMap data)
Trigger the identified
(execute it now). |
JobBuilder |
JobBuilder.usingJobData(JobDataMap newJobDataMap)
|
TriggerBuilder<T> |
TriggerBuilder.usingJobData(JobDataMap newJobDataMap)
Set the Trigger's
JobDataMap, adding any values to it that were
already set on this TriggerBuilder using any of the other 'usingJobData'
methods. |
| Modifier and Type | Method and Description |
|---|---|
void |
IQuartzScheduler.triggerJob(JobKey jobKey,
JobDataMap data) |
void |
QuartzScheduler.triggerJob(JobKey jobKey,
JobDataMap data)
Trigger the identified
(execute
it now) - with a non-volatile trigger. |
| Modifier and Type | Method and Description |
|---|---|
JobDataMap |
JobDetail.getJobDataMap() |
JobDataMap |
JobExecutionContext.getMergedJobDataMap()
Get the convenience
JobDataMap of this execution context. |
| Modifier and Type | Method and Description |
|---|---|
void |
JobDetail.setJobDataMap(JobDataMap jobDataMap)
Set the
JobDataMap to be associated with the Job. |
void |
StdScheduler.triggerJob(JobKey jobKey,
JobDataMap data)
Calls the equivalent method on the 'proxied'
QuartzScheduler. |
| Modifier and Type | Method and Description |
|---|---|
JobDataMap |
AbstractTrigger.getJobDataMap() |
| Modifier and Type | Method and Description |
|---|---|
void |
AbstractTrigger.setJobDataMap(JobDataMap jobDataMap) |
| Modifier and Type | Method and Description |
|---|---|
protected void |
PropertySettingJobFactory.setBeanProps(Object obj,
JobDataMap data) |
| Modifier and Type | Method and Description |
|---|---|
void |
IMutableTrigger.setJobDataMap(JobDataMap jobDataMap)
Set the
JobDataMap to be associated with the
Trigger. |
Copyright © 2016–2021 Philip Helger. All rights reserved.