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.jdbcjobstore | |
org.quartz.impl.triggers |
This package contains Trigger implementations that ship with Quartz.
|
org.quartz.jobs.ee.ejb | |
org.quartz.jobs.ee.jms | |
org.quartz.jobs.ee.mail | |
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.wrappers |
Modifier and Type | Method and Description |
---|---|
JobDataMap |
Trigger.getJobDataMap()
Get the
JobDataMap that is associated with the
Trigger . |
JobDataMap |
JobDetail.getJobDataMap()
Get the
JobDataMap that is associated with the Job . |
JobDataMap |
JobExecutionContext.getMergedJobDataMap()
Get the convenience
JobDataMap of this execution context. |
Modifier and Type | Method and Description |
---|---|
JobBuilder |
JobBuilder.setJobData(JobDataMap newJobDataMap)
|
void |
Scheduler.triggerJob(JobKey jobKey,
JobDataMap data)
Trigger the identified
(execute it now). |
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. |
JobBuilder |
JobBuilder.usingJobData(JobDataMap newJobDataMap)
|
Modifier and Type | Method and Description |
---|---|
void |
RemotableQuartzScheduler.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 |
---|---|
static JobDataMap |
JobDataMapSupport.newJobDataMap(Map<String,Object> map) |
static JobDataMap |
JobDataMapSupport.newJobDataMap(TabularData tabularData) |
Modifier and Type | Method and Description |
---|---|
static TabularData |
JobDataMapSupport.toTabularData(JobDataMap jobDataMap) |
Modifier and Type | Method and Description |
---|---|
JobDataMap |
JobDetailImpl.getJobDataMap() |
JobDataMap |
JobExecutionContextImpl.getMergedJobDataMap()
Get the convenience
JobDataMap of this execution context. |
Modifier and Type | Method and Description |
---|---|
void |
JobDetailImpl.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 . |
void |
RemoteScheduler.triggerJob(JobKey jobKey,
JobDataMap data)
Calls the equivalent method on the 'proxied'
QuartzScheduler . |
void |
RemoteMBeanScheduler.triggerJob(JobKey jobKey,
JobDataMap data)
Calls the equivalent method on the 'proxied'
QuartzScheduler ,
passing the SchedulingContext associated with this
instance. |
Modifier and Type | Method and Description |
---|---|
JobDataMap |
StdJDBCDelegate.selectTriggerJobDataMap(Connection conn,
String triggerName,
String groupName)
Select a trigger's JobDataMap.
|
JobDataMap |
DriverDelegate.selectTriggerJobDataMap(Connection conn,
String triggerName,
String groupName)
Select a trigger's JobDataMap.
|
Modifier and Type | Method and Description |
---|---|
protected ByteArrayOutputStream |
StdJDBCDelegate.serializeJobData(JobDataMap data)
Remove the transient data from and then create a serialized
java.util.ByteArrayOutputStream
version of a . |
Modifier and Type | Method and Description |
---|---|
JobDataMap |
AbstractTrigger.getJobDataMap()
Get the
JobDataMap that is associated with the
Trigger . |
Modifier and Type | Method and Description |
---|---|
void |
AbstractTrigger.setJobDataMap(JobDataMap jobDataMap)
Set the
JobDataMap to be associated with the
Trigger . |
Modifier and Type | Method and Description |
---|---|
protected InitialContext |
EJBInvokerJob.getInitialContext(JobDataMap jobDataMap) |
Modifier and Type | Method and Description |
---|---|
Message |
JmsMessageFactory.createMessage(JobDataMap jobDataMap,
Session session)
Creates a
javax.jms.Message . |
static InitialContext |
JmsHelper.getInitialContext(JobDataMap dataMap) |
static boolean |
JmsHelper.isDestinationSecure(JobDataMap dataMap) |
static boolean |
JmsHelper.useTransaction(JobDataMap dataMap) |
Modifier and Type | Method and Description |
---|---|
protected String |
SendMailJob.getOptionalParm(JobDataMap data,
String property) |
protected String |
SendMailJob.getRequiredParm(JobDataMap data,
String property,
String constantName) |
protected SendMailJob.MailInfo |
SendMailJob.populateMailInfo(JobDataMap data,
SendMailJob.MailInfo mailInfo) |
Modifier and Type | Method and Description |
---|---|
protected void |
PropertySettingJobFactory.setBeanProps(Object obj,
JobDataMap data) |
Modifier and Type | Method and Description |
---|---|
void |
MutableTrigger.setJobDataMap(JobDataMap jobDataMap)
Set the
JobDataMap to be associated with the
Trigger . |
Modifier and Type | Method and Description |
---|---|
JobDataMap |
JobWrapper.getJobDataMapClone() |
Modifier and Type | Method and Description |
---|---|
void |
JobWrapper.setJobDataMap(JobDataMap newData,
JobFacade jobFacade) |
Copyright 2001-2019, Terracotta, Inc.