Uses of Interface
org.quartz.jobs.Job
-
Uses of Job in org.knowm.sundial
-
Uses of Job in org.quartz.builders
Modifier and TypeMethodDescriptionstatic 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. -
Uses of Job in org.quartz.core
Modifier and TypeMethodDescriptionJobExecutionContext.getJobInstance()
Get the instance of theJob
that was created for this execution.JobExecutionContextImpl.getJobInstance()
ModifierConstructorDescriptionJobExecutionContextImpl
(Scheduler scheduler, TriggerFiredBundle firedBundle, Job job) Create a JobExcecutionContext with the given context data. -
Uses of Job in org.quartz.jobs
Modifier and TypeInterfaceDescriptioninterface
The interface to be implemented by
that provide a mechanism for having their execution interrupted.Job
sModifier and TypeClassDescriptionclass
An implementation of Job, that does absolutely nothing - useful for system which only wish to use
andTriggerListener
sJobListener
sModifier and TypeMethodDescriptionJobFactory.newJob
(TriggerFiredBundle bundle, Scheduler scheduler) Called by the scheduler at the time of the trigger firing, in order to produce aJob
instance on which to call execute.SimpleJobFactory.newJob
(TriggerFiredBundle bundle, Scheduler Scheduler) Modifier and TypeMethodDescriptionJobDetail.getJobClass()
Get the instance ofJob
that will be executed.JobDetailImpl.getJobClass()
Modifier and TypeMethodDescriptionvoid
JobDetailImpl.setJobClass
(Class<? extends Job> jobClass) Set the instance ofJob
that will be executed.