Uses of Class
org.quartz.builders.JobBuilder
-
Uses of JobBuilder in org.quartz.builders
Modifier and TypeMethodDescriptionJobBuilder.isConcurrencyAllowed
(boolean isConcurrencyAllowed) The default behavior is to veto any job is currently running concurrent.static JobBuilder
JobBuilder.newJobBuilder()
Create a JobBuilder with which to define aJobDetail
.static JobBuilder
JobBuilder.newJobBuilder
(Class<? extends Job> jobClass) Create a JobBuilder with which to define aJobDetail
, and set the class name of theJob
to be executed.Set the class which will be instantiated and executed when a Trigger fires that is associated with this JobDetail.JobBuilder.usingJobData
(JobDataMap newJobDataMap) Set the JobDetail'sJobDataMap
JobBuilder.withDescription
(String description) Set the given (human-meaningful) description of the Job.JobBuilder.withIdentity
(String key) Use aString
to identify the JobDetail. -
Uses of JobBuilder in org.quartz.jobs
Modifier and TypeMethodDescriptionJobDetail.getJobBuilder()
Get aJobBuilder
that is configured to produce aJobDetail
identical to this one.JobDetailImpl.getJobBuilder()