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 JobBuilderJobBuilder.newJobBuilder(Class<? extends Job> jobClass) Create a JobBuilder with which to define aJobDetail, and set the class name of theJobto 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 theJobthat 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 TypeInterfaceDescriptioninterfaceThe interface to be implemented bythat provide a mechanism for having their execution interrupted.JobsClasses in org.quartz.jobs that implement JobModifier and TypeClassDescriptionclassAn implementation of Job, that does absolutely nothing - useful for system which only wish to useandTriggerListeners, rather than writing Jobs that perform work.JobListenersMethods 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 aJobinstance 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 ofJobthat will be executed.JobDetailImpl.getJobClass()Method parameters in org.quartz.jobs with type arguments of type JobModifier and TypeMethodDescriptionvoidJobDetailImpl.setJobClass(Class<? extends Job> jobClass) Set the instance ofJobthat will be executed.