Uses of Class
org.quartz.UnableToInterruptJobException

Packages that use UnableToInterruptJobException
org.quartz   
org.quartz.core   
org.quartz.examples   
org.quartz.impl   
 

Uses of UnableToInterruptJobException in org.quartz
 

Methods in org.quartz that throw UnableToInterruptJobException
 boolean Scheduler.interrupt(java.lang.String jobName, java.lang.String groupName)
           Request the interruption of all currently executing instances of the identified Job, which must be an implementor of the InterruptableJob interface.
 void InterruptableJob.interrupt()
           Called by the Scheduler when a user interrupts the Job.
 

Uses of UnableToInterruptJobException in org.quartz.core
 

Methods in org.quartz.core that throw UnableToInterruptJobException
 boolean QuartzScheduler.interrupt(SchedulingContext ctxt, java.lang.String jobName, java.lang.String groupName)
          Interrupt all instances of the identified InterruptableJob.
 boolean RemotableQuartzScheduler.interrupt(SchedulingContext ctxt, java.lang.String jobName, java.lang.String groupName)
           
 

Uses of UnableToInterruptJobException in org.quartz.examples
 

Methods in org.quartz.examples that throw UnableToInterruptJobException
 void DumbInterruptableJob.interrupt()
           Called by the Scheduler when a user interrupts the Job.
 

Uses of UnableToInterruptJobException in org.quartz.impl
 

Methods in org.quartz.impl that throw UnableToInterruptJobException
 boolean RemoteScheduler.interrupt(java.lang.String jobName, java.lang.String groupName)
           
 boolean StdScheduler.interrupt(java.lang.String jobName, java.lang.String groupName)
           
 


Quartz Project Page