Uses of Interface
org.quartz.Job

Packages that use Job
org.quartz   
org.quartz.ee.ejb   
org.quartz.examples   
org.quartz.helpers   
org.quartz.jobs   
org.quartz.jobs.ee.jmx   
org.quartz.jobs.ee.mail   
 

Uses of Job in org.quartz
 

Subinterfaces of Job in org.quartz
 interface InterruptableJob
           The interface to be implemented by Jobs that provide a mechanism for having their execution interrupted.
 interface StatefulJob
           A marker interface for JobDetail s that wish to have their state maintained between executions.
 

Methods in org.quartz that return Job
 Job JobExecutionContext.getJobInstance()
           Get the instance of the Job that was created for this execution.
 

Constructors in org.quartz with parameters of type Job
JobExecutionContext(Scheduler scheduler, TriggerFiredBundle firedBundle, Job job)
           Create a JobExcecutionContext with the given context data.
 

Uses of Job in org.quartz.ee.ejb
 

Classes in org.quartz.ee.ejb that implement Job
 class EJBInvokerJob
          Deprecated. This class has been repackaged at org.quartz.jobs.ee.ejb.
 

Uses of Job in org.quartz.examples
 

Classes in org.quartz.examples that implement Job
 class DumbDelayJob
           A dumb implementation of Job, for unittesting purposes.
 class DumbInterruptableJob
           A dumb implementation of an InterruptableJob, for unittesting purposes.
 class DumbJob
           A dumb implementation of Job, for unittesting purposes.
 class DumbJob2
           A dumb implementation of Job, for unittesting purposes.
 class DumbRecoveryJob
           A dumb implementation of Job, for unittesting purposes.
 class DumbRecoveryStatefulJob
           A dumb implementation of Job, for unittesting purposes.
 class StatefulDumbJob
           A dumb implementation of Job, for unittesting purposes.
 

Uses of Job in org.quartz.helpers
 

Classes in org.quartz.helpers that implement Job
 class NoOpJob
          Deprecated. this class has been repackaged at org.quartz.jobs.
 

Uses of Job in org.quartz.jobs
 

Classes in org.quartz.jobs that implement Job
 class FileScanJob
          Inspects a file and compares whether it's "last modified date" has changed since the last time it was inspected.
 class NativeJob
           
 

Uses of Job in org.quartz.jobs.ee.jmx
 

Classes in org.quartz.jobs.ee.jmx that implement Job
 class JMXInvokerJob
          Generic JMX invoker Job.
 

Uses of Job in org.quartz.jobs.ee.mail
 

Classes in org.quartz.jobs.ee.mail that implement Job
 class SendMailJob
           A Job which sends an e-mail with the configured content to the configured recipient.
 


Quartz Project Page