Uses of Interface
org.quartz.Job

Packages that use Job
org.quartz The main package of Quartz, containing the client-side interfaces. 
org.quartz.examples.example1   
org.quartz.examples.example10   
org.quartz.examples.example13   
org.quartz.examples.example14   
org.quartz.examples.example4   
org.quartz.examples.example5   
org.quartz.examples.example6   
org.quartz.examples.example7   
org.quartz.examples.example9   
org.quartz.jobs   
org.quartz.jobs.ee.ejb   
org.quartz.jobs.ee.jms   
org.quartz.jobs.ee.jmx   
org.quartz.jobs.ee.mail   
org.quartz.simpl Contains simple / light-weight implementations (with no dependencies on external libraries) of interfaces required by the org.quartz.core.QuartzScheduler. 
org.quartz.spi Contains Service Provider Interfaces that can be implemented by those wishing to create and use custom versions of Quartz back-end/behind-the-scenes services. 
 

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.examples.example1
 

Classes in org.quartz.examples.example1 that implement Job
 class HelloJob
           This is just a simple job that says "Hello" to the world.
 

Uses of Job in org.quartz.examples.example10
 

Classes in org.quartz.examples.example10 that implement Job
 class SimpleJob
           This is just a simple job that gets fired off many times by example 1
 

Uses of Job in org.quartz.examples.example13
 

Classes in org.quartz.examples.example13 that implement Job
 class SimpleRecoveryJob
           A dumb implementation of Job, for unittesting purposes.
 class SimpleRecoveryStatefulJob
          This job has the same functionality of SimpleRecoveryJob except that this job implements the StatefulJob interface
 

Uses of Job in org.quartz.examples.example14
 

Classes in org.quartz.examples.example14 that implement Job
 class TriggerEchoJob
          This is just a simple job that echos the name of the Trigger that fired it.
 

Uses of Job in org.quartz.examples.example4
 

Classes in org.quartz.examples.example4 that implement Job
 class ColorJob
           This is just a simple job that receives parameters and maintains state
 

Uses of Job in org.quartz.examples.example5
 

Classes in org.quartz.examples.example5 that implement Job
 class MisfireJob
           A dumb implementation of Job, for unittesting purposes.
 class StatefulDumbJob
           A dumb implementation of Job, for unittesting purposes.
 

Uses of Job in org.quartz.examples.example6
 

Classes in org.quartz.examples.example6 that implement Job
 class BadJob1
           A job dumb job that will throw a job execution exception
 class BadJob2
           A job dumb job that will throw a job execution exception
 

Uses of Job in org.quartz.examples.example7
 

Classes in org.quartz.examples.example7 that implement Job
 class DumbInterruptableJob
           A dumb implementation of an InterruptableJob, for unittesting purposes.
 

Uses of Job in org.quartz.examples.example9
 

Classes in org.quartz.examples.example9 that implement Job
 class SimpleJob1
           This is just a simple job that gets fired off many times by example 1
 class SimpleJob2
           This is just a simple job that gets fired off many times by example 1
 

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
           
 class NoOpJob
           An implementation of Job, that does absolutely nothing - useful for system which only wish to use TriggerListeners and JobListeners, rather than writing Jobs that perform work.
 

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

Classes in org.quartz.jobs.ee.ejb that implement Job
 class EJBInvokerJob
           A Job that invokes a method on an EJB.
 

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

Classes in org.quartz.jobs.ee.jms that implement Job
 class SendDestinationMessageJob
           A Job that sends a javax.jms.Message to a javax.jms.Destination.
 class SendQueueMessageJob
           A Job that sends a javax.jms.Message to a javax.jms.Queue
 class SendTopicMessageJob
           A Job that sends a javax.jms.Message to a javax.jms.Topic.
 

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.
 

Uses of Job in org.quartz.simpl
 

Methods in org.quartz.simpl that return Job
 Job PropertySettingJobFactory.newJob(TriggerFiredBundle bundle)
           
 Job SimpleJobFactory.newJob(TriggerFiredBundle bundle)
           
 

Uses of Job in org.quartz.spi
 

Methods in org.quartz.spi that return Job
 Job JobFactory.newJob(TriggerFiredBundle bundle)
          Called by the scheduler at the time of the trigger firing, in order to produce a Job instance on which to call execute.
 



Copyright © 2010. All Rights Reserved.