|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use JobBuilder | |
---|---|
org.quartz | The main package of Quartz, containing the client-side interfaces. |
org.quartz.impl | Contains implementations of the SchedulerFactory, JobStore, ThreadPool, and other interfaces required by the org.quartz.core.QuartzScheduler. |
Uses of JobBuilder in org.quartz |
---|
Methods in org.quartz that return JobBuilder | |
---|---|
JobBuilder |
JobDetail.getJobBuilder()
Get a JobBuilder that is configured to produce a
JobDetail identical to this one. |
static JobBuilder |
JobBuilder.newJob()
Create a JobBuilder with which to define a JobDetail . |
static JobBuilder |
JobBuilder.newJob(java.lang.Class<? extends Job> jobClass)
Create a JobBuilder with which to define a JobDetail ,
and set the class name of the Job to be executed. |
JobBuilder |
JobBuilder.ofType(java.lang.Class<? extends Job> jobClass)
Set the class which will be instantiated and executed when a Trigger fires that is associated with this JobDetail. |
JobBuilder |
JobBuilder.requestRecovery()
Instructs the Scheduler whether or not the Job
should be re-executed if a 'recovery' or 'fail-over' situation is
encountered. |
JobBuilder |
JobBuilder.requestRecovery(boolean shouldRecover)
Instructs the Scheduler whether or not the Job
should be re-executed if a 'recovery' or 'fail-over' situation is
encountered. |
JobBuilder |
JobBuilder.storeDurably()
Whether or not the Job should remain stored after it is
orphaned (no point to it). |
JobBuilder |
JobBuilder.storeDurably(boolean durability)
Whether or not the Job should remain stored after it is
orphaned (no point to it). |
JobBuilder |
JobBuilder.usingJobData(JobDataMap newJobDataMap)
Set the JobDetail's JobDataMap , adding any values to it
that were already set on this JobBuilder using any of the
other 'usingJobData' methods. |
JobBuilder |
JobBuilder.usingJobData(java.lang.String key,
java.lang.Boolean value)
Add the given key-value pair to the JobDetail's JobDataMap . |
JobBuilder |
JobBuilder.usingJobData(java.lang.String key,
java.lang.Double value)
Add the given key-value pair to the JobDetail's JobDataMap . |
JobBuilder |
JobBuilder.usingJobData(java.lang.String key,
java.lang.Float value)
Add the given key-value pair to the JobDetail's JobDataMap . |
JobBuilder |
JobBuilder.usingJobData(java.lang.String key,
java.lang.Integer value)
Add the given key-value pair to the JobDetail's JobDataMap . |
JobBuilder |
JobBuilder.usingJobData(java.lang.String key,
java.lang.Long value)
Add the given key-value pair to the JobDetail's JobDataMap . |
JobBuilder |
JobBuilder.usingJobData(java.lang.String key,
java.lang.String value)
Add the given key-value pair to the JobDetail's JobDataMap . |
JobBuilder |
JobBuilder.withDescription(java.lang.String description)
Set the given (human-meaningful) description of the Job. |
JobBuilder |
JobBuilder.withIdentity(JobKey key)
Use a JobKey to identify the JobDetail. |
JobBuilder |
JobBuilder.withIdentity(java.lang.String name)
Use a JobKey with the given name and default group to
identify the JobDetail. |
JobBuilder |
JobBuilder.withIdentity(java.lang.String name,
java.lang.String group)
Use a JobKey with the given name and group to
identify the JobDetail. |
Uses of JobBuilder in org.quartz.impl |
---|
Methods in org.quartz.impl that return JobBuilder | |
---|---|
JobBuilder |
JobDetailImpl.getJobBuilder()
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |