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 |
Contains implementations of the SchedulerFactory, JobStore, ThreadPool, and
other interfaces required by the org.quartz.core.QuartzScheduler.
|
org.quartz.impl.jdbcjobstore | |
org.quartz.jobs.ee.jms |
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 |
---|---|
void |
Trigger.setJobDataMap(JobDataMap jobDataMap)
Set the
JobDataMap to be associated with the
Trigger . |
void |
JobDetail.setJobDataMap(JobDataMap jobDataMap)
Set the
JobDataMap to be associated with the Job . |
void |
Scheduler.triggerJob(java.lang.String jobName,
java.lang.String groupName,
JobDataMap data)
Trigger the identified
(execute it now) - the generated trigger will be non-volatile. |
void |
Scheduler.triggerJobWithVolatileTrigger(java.lang.String jobName,
java.lang.String groupName,
JobDataMap data)
Trigger the identified
(execute it now) - the generated trigger will be volatile. |
Modifier and Type | Method and Description |
---|---|
void |
RemotableQuartzScheduler.triggerJob(SchedulingContext ctxt,
java.lang.String jobName,
java.lang.String groupName,
JobDataMap data) |
void |
QuartzScheduler.triggerJob(SchedulingContext ctxt,
java.lang.String jobName,
java.lang.String groupName,
JobDataMap data)
Trigger the identified
(execute it
now) - with a non-volatile trigger. |
void |
RemotableQuartzScheduler.triggerJobWithVolatileTrigger(SchedulingContext ctxt,
java.lang.String jobName,
java.lang.String groupName,
JobDataMap data) |
void |
QuartzScheduler.triggerJobWithVolatileTrigger(SchedulingContext ctxt,
java.lang.String jobName,
java.lang.String groupName,
JobDataMap data)
Trigger the identified
(execute it
now) - with a volatile trigger. |
Modifier and Type | Method and Description |
---|---|
void |
StdScheduler.triggerJob(java.lang.String jobName,
java.lang.String groupName,
JobDataMap data)
Calls the equivalent method on the 'proxied'
QuartzScheduler ,
passing the SchedulingContext associated with this
instance. |
void |
RemoteScheduler.triggerJob(java.lang.String jobName,
java.lang.String groupName,
JobDataMap data)
Calls the equivalent method on the 'proxied'
QuartzScheduler ,
passing the SchedulingContext associated with this
instance. |
void |
RemoteMBeanScheduler.triggerJob(java.lang.String jobName,
java.lang.String groupName,
JobDataMap data)
Calls the equivalent method on the 'proxied'
QuartzScheduler ,
passing the SchedulingContext associated with this
instance. |
void |
StdScheduler.triggerJobWithVolatileTrigger(java.lang.String jobName,
java.lang.String groupName,
JobDataMap data)
Calls the equivalent method on the 'proxied'
QuartzScheduler ,
passing the SchedulingContext associated with this
instance. |
void |
RemoteScheduler.triggerJobWithVolatileTrigger(java.lang.String jobName,
java.lang.String groupName,
JobDataMap data)
Calls the equivalent method on the 'proxied'
QuartzScheduler ,
passing the SchedulingContext associated with this
instance. |
void |
RemoteMBeanScheduler.triggerJobWithVolatileTrigger(java.lang.String jobName,
java.lang.String groupName,
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(java.sql.Connection conn,
java.lang.String triggerName,
java.lang.String groupName)
Select a trigger's JobDataMap.
|
Modifier and Type | Method and Description |
---|---|
javax.jms.Message |
JmsMessageFactory.createMessage(JobDataMap jobDataMap,
javax.jms.Session session)
Creates a
javax.jms.Message . |
static javax.naming.InitialContext |
JmsHelper.getInitialContext(JobDataMap jobDataMap) |
static boolean |
JmsHelper.isDestinationSecure(JobDataMap jobDataMap) |
static boolean |
JmsHelper.useTransaction(JobDataMap jobDataMap) |