Uses of Class
org.quartz.core.JobRunShell

Packages that use JobRunShell
org.quartz.core   
org.quartz.ee.jta   
org.quartz.impl   
 

Uses of JobRunShell in org.quartz.core
 

Methods in org.quartz.core that return JobRunShell
 JobRunShell JobRunShellFactory.borrowJobRunShell()
           Called by the QuartzSchedulerThread to obtain instances of JobRunShell.
 

Methods in org.quartz.core with parameters of type JobRunShell
 void JobRunShellFactory.returnJobRunShell(JobRunShell jobRunShell)
           Called by the QuartzSchedulerThread to return instances of JobRunShell.
 

Uses of JobRunShell in org.quartz.ee.jta
 

Subclasses of JobRunShell in org.quartz.ee.jta
 class JTAJobRunShell
           An extension of JobRunShell that begins an XA transaction before executing the Job, and commits (or rolls-back) the transaction after execution completes.
 

Methods in org.quartz.ee.jta that return JobRunShell
 JobRunShell JTAJobRunShellFactory.borrowJobRunShell()
           Called by the QuartzSchedulerThread to obtain instances of JobRunShell.
 

Methods in org.quartz.ee.jta with parameters of type JobRunShell
 void JTAJobRunShellFactory.returnJobRunShell(JobRunShell jobRunShell)
           Called by the QuartzSchedulerThread to return instances of JobRunShell.
 

Uses of JobRunShell in org.quartz.impl
 

Methods in org.quartz.impl that return JobRunShell
 JobRunShell StdJobRunShellFactory.borrowJobRunShell()
           Called by the QuartzSchedulerThread to obtain instances of JobRunShell.
 

Methods in org.quartz.impl with parameters of type JobRunShell
 void StdJobRunShellFactory.returnJobRunShell(JobRunShell jobRunShell)
           Called by the QuartzSchedulerThread to return instances of JobRunShell.
 


Quartz Project Page