Uses of Interface
org.quartz.jobs.Job
Packages that use Job
-
Uses of Job in org.knowm.sundial
Classes in org.knowm.sundial that implement Job -
Uses of Job in org.quartz.builders
Method parameters in org.quartz.builders with type arguments of type JobModifier 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
Methods in org.quartz.core that return JobModifier and TypeMethodDescriptionJobExecutionContext.getJobInstance()
Get the instance of theJob
that was created for this execution.JobExecutionContextImpl.getJobInstance()
Constructors in org.quartz.core with parameters of type JobModifierConstructorDescriptionJobExecutionContextImpl
(Scheduler scheduler, TriggerFiredBundle firedBundle, Job job) Create a JobExcecutionContext with the given context data. -
Uses of Job in org.quartz.jobs
Subinterfaces of Job in org.quartz.jobsModifier and TypeInterfaceDescriptioninterface
The interface to be implemented by
that provide a mechanism for having their execution interrupted.Job
sClasses in org.quartz.jobs that implement JobModifier and TypeClassDescriptionclass
An implementation of Job, that does absolutely nothing - useful for system which only wish to use
andTriggerListener
sJobListener
sMethods in org.quartz.jobs that return JobModifier 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) Methods in org.quartz.jobs that return types with arguments of type JobModifier and TypeMethodDescriptionJobDetail.getJobClass()
Get the instance ofJob
that will be executed.JobDetailImpl.getJobClass()
Method parameters in org.quartz.jobs with type arguments of type JobModifier and TypeMethodDescriptionvoid
JobDetailImpl.setJobClass
(Class<? extends Job> jobClass) Set the instance ofJob
that will be executed.