|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface Scheduler
This is the main interface of a Quartz Scheduler.
A Scheduler
maintains a registry of
s
and JobDetail
s. Once registered, the Trigger
Scheduler
is responsible for executing Job
s when their associated
Trigger
s fire (when their scheduled time arrives).
Scheduler
instances are produced by a
.
A scheduler that has already been created/initialized can be found and used
through the same factory that produced it. After a SchedulerFactory
Scheduler
has been created, it is in "stand-by" mode, and must have its
start()
method called before it will fire any Job
s.
Job
s are to be created by the 'client program', by defining
a class that implements the
interface. Job
objects are then created (also
by the client) to define a individual instances of the JobDetail
Job
.
JobDetail
instances can then be registered with the Scheduler
via the scheduleJob(JobDetail, Trigger)
or addJob(JobDetail, boolean)
method.
Trigger
s can then be defined to fire individual Job
instances based on given schedules. SimpleTrigger
s are most
useful for one-time firings, or firing at an exact moment in time, with N
repeats with a given delay between them. CronTrigger
s allow
scheduling based on time of day, day of week, day of month, and month of
year.
Job
s and Trigger
s have a name and group
associated with them, which should uniquely identify them within a single
. The 'group' feature may be useful for
creating logical groupings or categorizations of Scheduler
Jobs
s and
Triggers
s. If you don't have need for assigning a group to a
given Jobs
of Triggers
, then you can use the
DEFAULT_GROUP
constant defined on this interface.
Stored Job
s can also be 'manually' triggered through the use
of the triggerJob(String jobName, String jobGroup)
function.
Client programs may also be interested in the 'listener' interfaces that are
available from Quartz. The
interface
provides notifications of JobListener
Job
executions. The
interface provides notifications of TriggerListener
Trigger
firings. The
interface provides notifications of
SchedulerListener
Scheduler
events and errors.
The setup/configuration of a Scheduler
instance is very
customizable. Please consult the documentation distributed with Quartz.
Job
,
JobDetail
,
Trigger
,
JobListener
,
TriggerListener
,
SchedulerListener
Field Summary | |
---|---|
static java.lang.String |
DEFAULT_FAIL_OVER_GROUP
A constant Trigger group name used internally by the
scheduler - clients should not use the value of this constant
("FAILED_OVER_JOBS") for the name of a Trigger 's group. |
static java.lang.String |
DEFAULT_GROUP
A (possibly) useful constant that can be used for specifying the group that Job and Trigger instances belong to. |
static java.lang.String |
DEFAULT_MANUAL_TRIGGERS
A constant Trigger group name used internally by the
scheduler - clients should not use the value of this constant
("MANUAL_TRIGGER") for the name of a Trigger 's group. |
static java.lang.String |
DEFAULT_RECOVERY_GROUP
A constant Trigger group name used internally by the
scheduler - clients should not use the value of this constant
("RECOVERING_JOBS") for the name of a Trigger 's group. |
static java.lang.String |
FAILED_JOB_ORIGINAL_TRIGGER_FIRETIME_IN_MILLISECONDS
A constant JobDataMap key that can be used to retrieve the
scheduled fire time of the original Trigger from a recovery
trigger's data map in the case of a job recovering after a failed scheduler
instance. |
static java.lang.String |
FAILED_JOB_ORIGINAL_TRIGGER_GROUP
A constant JobDataMap key that can be used to retrieve the
group of the original Trigger from a recovery trigger's
data map in the case of a job recovering after a failed scheduler
instance. |
static java.lang.String |
FAILED_JOB_ORIGINAL_TRIGGER_NAME
A constant JobDataMap key that can be used to retrieve the
name of the original Trigger from a recovery trigger's
data map in the case of a job recovering after a failed scheduler
instance. |
Method Summary | |
---|---|
void |
addCalendar(java.lang.String calName,
Calendar calendar,
boolean replace,
boolean updateTriggers)
Add (register) the given Calendar to the Scheduler. |
void |
addGlobalJobListener(JobListener jobListener)
Add the given to the Scheduler 's
global list. |
void |
addGlobalTriggerListener(TriggerListener triggerListener)
Add the given to the Scheduler 's
global list. |
void |
addJob(JobDetail jobDetail,
boolean replace)
Add the given Job to the Scheduler - with no associated
Trigger . |
void |
addJobListener(JobListener jobListener)
Add the given to the Scheduler 's
list, of registered JobListener s. |
void |
addSchedulerListener(SchedulerListener schedulerListener)
Register the given with the
Scheduler . |
void |
addTriggerListener(TriggerListener triggerListener)
Add the given to the Scheduler 's
list, of registered TriggerListener s. |
boolean |
deleteCalendar(java.lang.String calName)
Delete the identified Calendar from the Scheduler. |
boolean |
deleteJob(java.lang.String jobName,
java.lang.String groupName)
Delete the identified Job from the Scheduler - and any
associated Trigger s. |
Calendar |
getCalendar(java.lang.String calName)
Get the instance with the given name. |
java.lang.String[] |
getCalendarNames()
Get the names of all registered . |
SchedulerContext |
getContext()
Returns the SchedulerContext of the Scheduler . |
java.util.List |
getCurrentlyExecutingJobs()
Return a list of JobExecutionContext objects that
represent all currently executing Jobs in this Scheduler instance. |
JobListener |
getGlobalJobListener(java.lang.String name)
Get the global that has
the given name. |
java.util.List |
getGlobalJobListeners()
Get a List containing all of the s in
the Scheduler 'sglobal list. |
TriggerListener |
getGlobalTriggerListener(java.lang.String name)
Get the global that
has the given name. |
java.util.List |
getGlobalTriggerListeners()
Get a List containing all of the
s in the Scheduler 'sglobal list. |
JobDetail |
getJobDetail(java.lang.String jobName,
java.lang.String jobGroup)
Get the for the Job
instance with the given name and group. |
java.lang.String[] |
getJobGroupNames()
Get the names of all known
groups. |
JobListener |
getJobListener(java.lang.String name)
Get the non-global that has
the given name. |
java.util.Set |
getJobListenerNames()
Get a Set containing the names of all the non-global
s registered with the Scheduler . |
java.lang.String[] |
getJobNames(java.lang.String groupName)
Get the names of all the
in the given group. |
SchedulerMetaData |
getMetaData()
Get a SchedulerMetaData object describing the settings
and capabilities of the scheduler instance. |
java.util.Set |
getPausedTriggerGroups()
Get the names of all groups that are paused. |
java.lang.String |
getSchedulerInstanceId()
Returns the instance Id of the Scheduler . |
java.util.List |
getSchedulerListeners()
Get a List containing all of the
s registered with the Scheduler . |
java.lang.String |
getSchedulerName()
Returns the name of the Scheduler . |
Trigger |
getTrigger(java.lang.String triggerName,
java.lang.String triggerGroup)
Get the instance with the given name and
group. |
java.lang.String[] |
getTriggerGroupNames()
Get the names of all known groups. |
TriggerListener |
getTriggerListener(java.lang.String name)
Get the non-global that
has the given name. |
java.util.Set |
getTriggerListenerNames()
Get a Set containing the names of all the non-global
s registered with the Scheduler . |
java.lang.String[] |
getTriggerNames(java.lang.String groupName)
Get the names of all the in the given
group. |
Trigger[] |
getTriggersOfJob(java.lang.String jobName,
java.lang.String groupName)
Get all s that are associated with the
identified . |
int |
getTriggerState(java.lang.String triggerName,
java.lang.String triggerGroup)
Get the current state of the identified . |
boolean |
interrupt(java.lang.String jobName,
java.lang.String groupName)
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 |
isInStandbyMode()
Reports whether the Scheduler is in stand-by mode. |
boolean |
isShutdown()
Reports whether the Scheduler has been shutdown. |
boolean |
isStarted()
Whether the scheduler has been started. |
void |
pauseAll()
Pause all triggers - similar to calling pauseTriggerGroup(group)
on every group, however, after using this method resumeAll()
must be called to clear the scheduler's state of 'remembering' that all
new triggers will be paused as they are added. |
void |
pauseJob(java.lang.String jobName,
java.lang.String groupName)
Pause the with the given
name - by pausing all of its current Trigger s. |
void |
pauseJobGroup(java.lang.String groupName)
Pause all of the in the
given group - by pausing all of their Trigger s. |
void |
pauseTrigger(java.lang.String triggerName,
java.lang.String groupName)
Pause the with the given name. |
void |
pauseTriggerGroup(java.lang.String groupName)
Pause all of the in the given group. |
boolean |
removeGlobalJobListener(java.lang.String name)
Remove the identified from the Scheduler 's
list of global listeners. |
boolean |
removeGlobalTriggerListener(java.lang.String name)
Remove the identified from the Scheduler 's
list of global listeners. |
boolean |
removeJobListener(java.lang.String name)
Remove the identified from the Scheduler 's
list of registered listeners. |
boolean |
removeSchedulerListener(SchedulerListener schedulerListener)
Remove the given from the
Scheduler . |
boolean |
removeTriggerListener(java.lang.String name)
Remove the identified from the
Scheduler 's list of registered listeners. |
java.util.Date |
rescheduleJob(java.lang.String triggerName,
java.lang.String groupName,
Trigger newTrigger)
Remove (delete) the with the
given name, and store the new given one - which must be associated
with the same job (the new trigger must have the job name & group specified)
- however, the new trigger need not have the same name as the old trigger. |
void |
resumeAll()
Resume (un-pause) all triggers - similar to calling resumeTriggerGroup(group) on every group. |
void |
resumeJob(java.lang.String jobName,
java.lang.String groupName)
Resume (un-pause) the with
the given name. |
void |
resumeJobGroup(java.lang.String groupName)
Resume (un-pause) all of the
in the given group. |
void |
resumeTrigger(java.lang.String triggerName,
java.lang.String groupName)
Resume (un-pause) the with the given
name. |
void |
resumeTriggerGroup(java.lang.String groupName)
Resume (un-pause) all of the in the
given group. |
java.util.Date |
scheduleJob(JobDetail jobDetail,
Trigger trigger)
Add the given to the
Scheduler, and associate the given with
it. |
java.util.Date |
scheduleJob(Trigger trigger)
Schedule the given with the
Job identified by the Trigger 's settings. |
void |
setJobFactory(JobFactory factory)
Set the JobFactory that will be responsible for producing
instances of Job classes. |
void |
shutdown()
Halts the Scheduler 's firing of ,
and cleans up all resources associated with the Scheduler. |
void |
shutdown(boolean waitForJobsToComplete)
Halts the Scheduler 's firing of ,
and cleans up all resources associated with the Scheduler. |
void |
standby()
Temporarily halts the Scheduler 's firing of . |
void |
start()
Starts the Scheduler 's threads that fire . |
void |
startDelayed(int seconds)
Calls {#start()} after the indicated number of seconds. |
void |
triggerJob(java.lang.String jobName,
java.lang.String groupName)
Trigger the identified
(execute it now) - the generated trigger will be non-volatile. |
void |
triggerJob(java.lang.String jobName,
java.lang.String groupName,
JobDataMap data)
Trigger the identified
(execute it now) - the generated trigger will be non-volatile. |
void |
triggerJobWithVolatileTrigger(java.lang.String jobName,
java.lang.String groupName)
Trigger the identified
(execute it now) - the generated trigger will be volatile. |
void |
triggerJobWithVolatileTrigger(java.lang.String jobName,
java.lang.String groupName,
JobDataMap data)
Trigger the identified
(execute it now) - the generated trigger will be volatile. |
boolean |
unscheduleJob(java.lang.String triggerName,
java.lang.String groupName)
Remove the indicated from the scheduler. |
Field Detail |
---|
static final java.lang.String DEFAULT_GROUP
A (possibly) useful constant that can be used for specifying the group
that Job
and Trigger
instances belong to.
static final java.lang.String DEFAULT_MANUAL_TRIGGERS
A constant Trigger
group name used internally by the
scheduler - clients should not use the value of this constant
("MANUAL_TRIGGER") for the name of a Trigger
's group.
static final java.lang.String DEFAULT_RECOVERY_GROUP
A constant Trigger
group name used internally by the
scheduler - clients should not use the value of this constant
("RECOVERING_JOBS") for the name of a Trigger
's group.
JobDetail.requestsRecovery()
,
Constant Field Valuesstatic final java.lang.String DEFAULT_FAIL_OVER_GROUP
A constant Trigger
group name used internally by the
scheduler - clients should not use the value of this constant
("FAILED_OVER_JOBS") for the name of a Trigger
's group.
JobDetail.requestsRecovery()
,
Constant Field Valuesstatic final java.lang.String FAILED_JOB_ORIGINAL_TRIGGER_NAME
JobDataMap
key that can be used to retrieve the
name of the original Trigger
from a recovery trigger's
data map in the case of a job recovering after a failed scheduler
instance.
JobDetail.requestsRecovery()
,
Constant Field Valuesstatic final java.lang.String FAILED_JOB_ORIGINAL_TRIGGER_GROUP
JobDataMap
key that can be used to retrieve the
group of the original Trigger
from a recovery trigger's
data map in the case of a job recovering after a failed scheduler
instance.
JobDetail.requestsRecovery()
,
Constant Field Valuesstatic final java.lang.String FAILED_JOB_ORIGINAL_TRIGGER_FIRETIME_IN_MILLISECONDS
JobDataMap
key that can be used to retrieve the
scheduled fire time of the original Trigger
from a recovery
trigger's data map in the case of a job recovering after a failed scheduler
instance.
JobDetail.requestsRecovery()
,
Constant Field ValuesMethod Detail |
---|
java.lang.String getSchedulerName() throws SchedulerException
Returns the name of the Scheduler
.
SchedulerException
java.lang.String getSchedulerInstanceId() throws SchedulerException
Returns the instance Id of the Scheduler
.
SchedulerException
SchedulerContext getContext() throws SchedulerException
Returns the SchedulerContext
of the Scheduler
.
SchedulerException
void start() throws SchedulerException
Starts the Scheduler
's threads that fire
.
When a scheduler is first created it is in "stand-by" mode, and will not
fire triggers. The scheduler can also be put into stand-by mode by
calling the Trigger
sstandby()
method.
The misfire/recovery process will be started, if it is the initial call to this method on this scheduler instance.
SchedulerException
- if shutdown()
has been called, or there is an
error within the Scheduler
.startDelayed(int)
,
standby()
,
shutdown()
void startDelayed(int seconds) throws SchedulerException
Calls {#start()} after the indicated number of seconds. (This call does not block). This can be useful within applications that have initializers that create the scheduler immediately, before the resources needed by the executing jobs have been fully initialized.
SchedulerException
- if shutdown()
has been called, or there is an
error within the Scheduler
.start()
,
standby()
,
shutdown()
boolean isStarted() throws SchedulerException
Note: This only reflects whether
has ever
been called on this Scheduler, so it will return start()
true
even
if the Scheduler
is currently in standby mode or has been
since shutdown.
SchedulerException
start()
,
isShutdown()
,
isInStandbyMode()
void standby() throws SchedulerException
Temporarily halts the Scheduler
's firing of
.
Trigger
s
When start()
is called (to bring the scheduler out of
stand-by mode), trigger misfire instructions will NOT be applied
during the execution of the start()
method - any misfires
will be detected immediately afterward (by the JobStore
's
normal process).
The scheduler is not destroyed, and can be re-started at any time.
SchedulerException
start()
,
pauseAll()
boolean isInStandbyMode() throws SchedulerException
Reports whether the Scheduler
is in stand-by mode.
SchedulerException
standby()
,
start()
void shutdown() throws SchedulerException
Halts the Scheduler
's firing of
,
and cleans up all resources associated with the Scheduler. Equivalent to
Trigger
sshutdown(false)
.
The scheduler cannot be re-started.
SchedulerException
shutdown(boolean)
void shutdown(boolean waitForJobsToComplete) throws SchedulerException
Halts the Scheduler
's firing of
,
and cleans up all resources associated with the Scheduler.
Trigger
s
The scheduler cannot be re-started.
waitForJobsToComplete
- if true
the scheduler will not allow this method
to return until all currently executing jobs have completed.
SchedulerException
shutdown()
boolean isShutdown() throws SchedulerException
Reports whether the Scheduler
has been shutdown.
SchedulerException
SchedulerMetaData getMetaData() throws SchedulerException
Get a SchedulerMetaData
object describing the settings
and capabilities of the scheduler instance.
Note that the data returned is an 'instantaneous' snap-shot, and that as soon as it's returned, the meta data values may be different.
SchedulerException
java.util.List getCurrentlyExecutingJobs() throws SchedulerException
Return a list of JobExecutionContext
objects that
represent all currently executing Jobs in this Scheduler instance.
This method is not cluster aware. That is, it will only return Jobs currently executing in this Scheduler instance, not across the entire cluster.
Note that the list returned is an 'instantaneous' snap-shot, and that as
soon as it's returned, the true list of executing jobs may be different.
Also please read the doc associated with JobExecutionContext
-
especially if you're using RMI.
SchedulerException
JobExecutionContext
void setJobFactory(JobFactory factory) throws SchedulerException
Set the JobFactory
that will be responsible for producing
instances of Job
classes.
JobFactories may be of use to those wishing to have their application
produce Job
instances via some special mechanism, such as to
give the opportunity for dependency injection.
SchedulerException
JobFactory
java.util.Date scheduleJob(JobDetail jobDetail, Trigger trigger) throws SchedulerException
Add the given
to the
Scheduler, and associate the given JobDetail
with
it.
Trigger
If the given Trigger does not reference any Job
, then it
will be set to reference the Job passed with it into this method.
SchedulerException
- if the Job or Trigger cannot be added to the Scheduler, or
there is an internal Scheduler error.java.util.Date scheduleJob(Trigger trigger) throws SchedulerException
Schedule the given
with the
Trigger
Job
identified by the Trigger
's settings.
SchedulerException
- if the indicated Job does not exist, or the Trigger cannot be
added to the Scheduler, or there is an internal Scheduler
error.boolean unscheduleJob(java.lang.String triggerName, java.lang.String groupName) throws SchedulerException
Remove the indicated
from the scheduler.
Trigger
SchedulerException
java.util.Date rescheduleJob(java.lang.String triggerName, java.lang.String groupName, Trigger newTrigger) throws SchedulerException
Remove (delete) the
with the
given name, and store the new given one - which must be associated
with the same job (the new trigger must have the job name & group specified)
- however, the new trigger need not have the same name as the old trigger.
Trigger
triggerName
- The name of the Trigger
to be replaced.groupName
- The group name of the Trigger
to be replaced.newTrigger
- The new Trigger
to be stored.
null
if a Trigger
with the given
name & group was not found and removed from the store, otherwise
the first fire time of the newly scheduled trigger.
SchedulerException
void addJob(JobDetail jobDetail, boolean replace) throws SchedulerException
Add the given Job
to the Scheduler - with no associated
Trigger
. The Job
will be 'dormant' until
it is scheduled with a Trigger
, or Scheduler.triggerJob()
is called for it.
The Job
must by definition be 'durable', if it is not,
SchedulerException will be thrown.
SchedulerException
- if there is an internal Scheduler error, or if the Job is not
durable, or a Job with the same name already exists, and
replace
is false
.boolean deleteJob(java.lang.String jobName, java.lang.String groupName) throws SchedulerException
Delete the identified Job
from the Scheduler - and any
associated Trigger
s.
SchedulerException
- if there is an internal Scheduler error.void triggerJob(java.lang.String jobName, java.lang.String groupName) throws SchedulerException
Trigger the identified
(execute it now) - the generated trigger will be non-volatile.
JobDetail
SchedulerException
void triggerJobWithVolatileTrigger(java.lang.String jobName, java.lang.String groupName) throws SchedulerException
Trigger the identified
(execute it now) - the generated trigger will be volatile.
JobDetail
SchedulerException
void triggerJob(java.lang.String jobName, java.lang.String groupName, JobDataMap data) throws SchedulerException
Trigger the identified
(execute it now) - the generated trigger will be non-volatile.
JobDetail
jobName
- the name of the Job to triggergroupName
- the group name of the Job to triggerdata
- the (possibly null
) JobDataMap to be
associated with the trigger that fires the job immediately.
SchedulerException
void triggerJobWithVolatileTrigger(java.lang.String jobName, java.lang.String groupName, JobDataMap data) throws SchedulerException
Trigger the identified
(execute it now) - the generated trigger will be volatile.
JobDetail
jobName
- the name of the Job to triggergroupName
- the group name of the Job to triggerdata
- the (possibly null
) JobDataMap to be
associated with the trigger that fires the job immediately.
SchedulerException
void pauseJob(java.lang.String jobName, java.lang.String groupName) throws SchedulerException
Pause the
with the given
name - by pausing all of its current JobDetail
Trigger
s.
SchedulerException
resumeJob(String, String)
void pauseJobGroup(java.lang.String groupName) throws SchedulerException
Pause all of the
in the
given group - by pausing all of their JobDetail
sTrigger
s.
The Scheduler will "remember" that the group is paused, and impose the pause on any new jobs that are added to the group while the group is paused.
SchedulerException
resumeJobGroup(String)
void pauseTrigger(java.lang.String triggerName, java.lang.String groupName) throws SchedulerException
Pause the
with the given name.
Trigger
SchedulerException
resumeTrigger(String, String)
void pauseTriggerGroup(java.lang.String groupName) throws SchedulerException
Pause all of the
in the given group.
Trigger
s
The Scheduler will "remember" that the group is paused, and impose the pause on any new triggers that are added to the group while the group is paused.
SchedulerException
resumeTriggerGroup(String)
void resumeJob(java.lang.String jobName, java.lang.String groupName) throws SchedulerException
Resume (un-pause) the
with
the given name.
JobDetail
If any of the Job
'sTrigger
s missed one
or more fire-times, then the Trigger
's misfire
instruction will be applied.
SchedulerException
pauseJob(String, String)
void resumeJobGroup(java.lang.String groupName) throws SchedulerException
Resume (un-pause) all of the
in the given group.
JobDetail
s
If any of the Job
s had Trigger
s that
missed one or more fire-times, then the Trigger
's
misfire instruction will be applied.
SchedulerException
pauseJobGroup(String)
void resumeTrigger(java.lang.String triggerName, java.lang.String groupName) throws SchedulerException
Resume (un-pause) the
with the given
name.
Trigger
If the Trigger
missed one or more fire-times, then the
Trigger
's misfire instruction will be applied.
SchedulerException
pauseTrigger(String, String)
void resumeTriggerGroup(java.lang.String groupName) throws SchedulerException
Resume (un-pause) all of the
in the
given group.
Trigger
s
If any Trigger
missed one or more fire-times, then the
Trigger
's misfire instruction will be applied.
SchedulerException
pauseTriggerGroup(String)
void pauseAll() throws SchedulerException
Pause all triggers - similar to calling pauseTriggerGroup(group)
on every group, however, after using this method resumeAll()
must be called to clear the scheduler's state of 'remembering' that all
new triggers will be paused as they are added.
When resumeAll()
is called (to un-pause), trigger misfire
instructions WILL be applied.
SchedulerException
resumeAll()
,
pauseTriggerGroup(String)
,
standby()
void resumeAll() throws SchedulerException
Resume (un-pause) all triggers - similar to calling
resumeTriggerGroup(group)
on every group.
If any Trigger
missed one or more fire-times, then the
Trigger
's misfire instruction will be applied.
SchedulerException
pauseAll()
java.lang.String[] getJobGroupNames() throws SchedulerException
Get the names of all known
groups.
JobDetail
SchedulerException
java.lang.String[] getJobNames(java.lang.String groupName) throws SchedulerException
Get the names of all the
in the given group.
JobDetail
s
SchedulerException
Trigger[] getTriggersOfJob(java.lang.String jobName, java.lang.String groupName) throws SchedulerException
java.lang.String[] getTriggerGroupNames() throws SchedulerException
Get the names of all known
groups.
Trigger
SchedulerException
java.lang.String[] getTriggerNames(java.lang.String groupName) throws SchedulerException
Get the names of all the
in the given
group.
Trigger
s
SchedulerException
java.util.Set getPausedTriggerGroups() throws SchedulerException
Get the names of all
groups that are paused.
Trigger
SchedulerException
JobDetail getJobDetail(java.lang.String jobName, java.lang.String jobGroup) throws SchedulerException
Get the
for the JobDetail
Job
instance with the given name and group.
SchedulerException
Trigger getTrigger(java.lang.String triggerName, java.lang.String triggerGroup) throws SchedulerException
Get the
instance with the given name and
group.
Trigger
SchedulerException
int getTriggerState(java.lang.String triggerName, java.lang.String triggerGroup) throws SchedulerException
Get the current state of the identified
.
Trigger
SchedulerException
Trigger.STATE_NORMAL
,
Trigger.STATE_PAUSED
,
Trigger.STATE_COMPLETE
,
Trigger.STATE_ERROR
,
Trigger.STATE_BLOCKED
,
Trigger.STATE_NONE
void addCalendar(java.lang.String calName, Calendar calendar, boolean replace, boolean updateTriggers) throws SchedulerException
Add (register) the given Calendar
to the Scheduler.
updateTriggers
- whether or not to update existing triggers that
referenced the already existing calendar so that they are 'correct'
based on the new trigger.
SchedulerException
- if there is an internal Scheduler error, or a Calendar with
the same name already exists, and replace
is
false
.boolean deleteCalendar(java.lang.String calName) throws SchedulerException
Delete the identified Calendar
from the Scheduler.
SchedulerException
- if there is an internal Scheduler error.Calendar getCalendar(java.lang.String calName) throws SchedulerException
Get the
instance with the given name.
Calendar
SchedulerException
java.lang.String[] getCalendarNames() throws SchedulerException
Get the names of all registered
.
Calendar
s
SchedulerException
boolean interrupt(java.lang.String jobName, java.lang.String groupName) throws UnableToInterruptJobException
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.
If more than one instance of the identified job is currently executing,
the InterruptableJob#interrupt()
method will be called on
each instance. However, there is a limitation that in the case that
interrupt()
on one instances throws an exception, all
remaining instances (that have not yet been interrupted) will not have
their interrupt()
method called.
If you wish to interrupt a specific instance of a job (when more than
one is executing) you can do so by calling
to obtain a handle
to the job instance, and then invoke getCurrentlyExecutingJobs()
interrupt()
on it
yourself.
This method is not cluster aware. That is, it will only interrupt instances of the identified InterruptableJob currently executing in this Scheduler instance, not across the entire cluster.
jobName
- groupName
-
UnableToInterruptJobException
- if the job does not implement
InterruptableJob
, or there is an exception while
interrupting the job.InterruptableJob.interrupt()
,
getCurrentlyExecutingJobs()
void addGlobalJobListener(JobListener jobListener) throws SchedulerException
Add the given
to the JobListener
Scheduler
's
global list.
Listeners in the 'global' list receive notification of execution events
for ALL
s.
JobDetail
Global listeners receive events for ALL jobs, and non-global listeners receive
events only for the specific jobs that explicitly name the listener in the
JobDetail.getJobListenerNames()
property.
SchedulerException
addJobListener(JobListener)
,
removeGlobalJobListener(String)
void addJobListener(JobListener jobListener) throws SchedulerException
Add the given
to the JobListener
Scheduler
's
list, of registered JobListener
s.
*
Global listeners receive events for ALL jobs, and non-global listeners receive
events only for the specific jobs that explicitly name the listener in the
JobDetail.getJobListenerNames()
property.
SchedulerException
addGlobalJobListener(JobListener)
,
removeJobListener(String)
boolean removeGlobalJobListener(java.lang.String name) throws SchedulerException
Remove the identified
from the JobListener
Scheduler
's
list of global listeners.
SchedulerException
addGlobalJobListener(JobListener)
boolean removeJobListener(java.lang.String name) throws SchedulerException
Remove the identified
from the JobListener
Scheduler
's
list of registered listeners.
SchedulerException
addJobListener(JobListener)
java.util.List getGlobalJobListeners() throws SchedulerException
Get a List containing all of the
s in
the JobListener
Scheduler
'sglobal list.
SchedulerException
addGlobalJobListener(JobListener)
java.util.Set getJobListenerNames() throws SchedulerException
Get a Set containing the names of all the non-global
s registered with the JobListener
Scheduler
.
SchedulerException
addJobListener(JobListener)
JobListener getGlobalJobListener(java.lang.String name) throws SchedulerException
Get the global
that has
the given name.
JobListener
SchedulerException
addGlobalJobListener(JobListener)
JobListener getJobListener(java.lang.String name) throws SchedulerException
Get the non-global
that has
the given name.
JobListener
SchedulerException
addJobListener(JobListener)
void addGlobalTriggerListener(TriggerListener triggerListener) throws SchedulerException
Add the given
to the TriggerListener
Scheduler
's
global list.
Listeners in the 'global' list receive notification of execution events
for ALL
s.
Trigger
Global listeners receive events for ALL triggers, and non-global listeners receive
events only for the specific triggers that explicitly name the listener in the
Trigger.getTriggerListenerNames()
property.
SchedulerException
addTriggerListener(TriggerListener)
void addTriggerListener(TriggerListener triggerListener) throws SchedulerException
Add the given
to the TriggerListener
Scheduler
's
list, of registered TriggerListener
s.
Global listeners receive events for ALL triggers, and non-global listeners receive
events only for the specific triggers that explicitly name the listener in the
Trigger.getTriggerListenerNames()
property.
SchedulerException
addGlobalTriggerListener(TriggerListener)
boolean removeGlobalTriggerListener(java.lang.String name) throws SchedulerException
Remove the identified
from the TriggerListener
Scheduler
's
list of global listeners.
SchedulerException
addGlobalTriggerListener(TriggerListener)
boolean removeTriggerListener(java.lang.String name) throws SchedulerException
Remove the identified
from the
TriggerListener
Scheduler
's list of registered listeners.
SchedulerException
addTriggerListener(TriggerListener)
java.util.List getGlobalTriggerListeners() throws SchedulerException
Get a List containing all of the
s in the TriggerListener
Scheduler
'sglobal list.
SchedulerException
addGlobalTriggerListener(TriggerListener)
java.util.Set getTriggerListenerNames() throws SchedulerException
Get a Set containing the names of all the non-global
s registered with the TriggerListener
Scheduler
.
SchedulerException
addTriggerListener(TriggerListener)
TriggerListener getGlobalTriggerListener(java.lang.String name) throws SchedulerException
Get the global
that
has the given name.
TriggerListener
SchedulerException
addGlobalTriggerListener(TriggerListener)
TriggerListener getTriggerListener(java.lang.String name) throws SchedulerException
Get the non-global
that
has the given name.
TriggerListener
SchedulerException
addTriggerListener(TriggerListener)
void addSchedulerListener(SchedulerListener schedulerListener) throws SchedulerException
Register the given
with the
SchedulerListener
Scheduler
.
SchedulerException
boolean removeSchedulerListener(SchedulerListener schedulerListener) throws SchedulerException
Remove the given
from the
SchedulerListener
Scheduler
.
SchedulerException
java.util.List getSchedulerListeners() throws SchedulerException
Get a List containing all of the
s registered with the SchedulerListener
Scheduler
.
SchedulerException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |