| Package | Description |
|---|---|
| com.helger.quartz |
The main package of Quartz, containing the client-side interfaces.
|
| com.helger.quartz.core |
Contains the core classes and interfaces for the Quartz job scheduler.
|
| com.helger.quartz.impl |
Contains implementations of the SchedulerFactory, JobStore, ThreadPool, and
other interfaces required by the org.quartz.core.QuartzScheduler.
|
| Modifier and Type | Method and Description |
|---|---|
void |
IInterruptableJob.interrupt()
Called by the
when a user interrupts the
Job. |
boolean |
IScheduler.interrupt(JobKey jobKey)
Request the interruption, within this Scheduler instance, of all currently
executing instances of the identified
Job, which must be an
implementor of the InterruptableJob interface. |
boolean |
IScheduler.interrupt(String fireInstanceId)
Request the interruption, within this Scheduler instance, of the identified
executing
Job instance, which must be an implementor of the
InterruptableJob interface. |
| Modifier and Type | Method and Description |
|---|---|
boolean |
IQuartzScheduler.interrupt(JobKey jobKey) |
boolean |
QuartzScheduler.interrupt(JobKey jobKey)
Interrupt all instances of the identified InterruptableJob executing in
this Scheduler instance.
|
boolean |
IQuartzScheduler.interrupt(String fireInstanceId) |
boolean |
QuartzScheduler.interrupt(String fireInstanceId)
Interrupt the identified InterruptableJob executing in this Scheduler
instance.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
StdScheduler.interrupt(JobKey jobKey) |
boolean |
StdScheduler.interrupt(String fireInstanceId) |
Copyright © 2016–2021 Philip Helger. All rights reserved.