|
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
org.quartz.impl Class RemoteScheduler
java.lang.Objectorg.quartz.impl.RemoteScheduler
- All Implemented Interfaces:
- Scheduler
An implementation of the Scheduler interface that remotely
proxies all method calls to the equivalent call on a given QuartzScheduler
instance, via RMI.
- Author:
- James House
- See Also:
Scheduler,QuartzScheduler,org.quartz.core.SchedulingContext
| Field Summary |
|---|
| Fields inherited from interface org.quartz.Scheduler |
|---|
DEFAULT_FAIL_OVER_GROUP, DEFAULT_GROUP, DEFAULT_RECOVERY_GROUP, FAILED_JOB_ORIGINAL_TRIGGER_FIRETIME_IN_MILLISECONDS, FAILED_JOB_ORIGINAL_TRIGGER_GROUP, FAILED_JOB_ORIGINAL_TRIGGER_NAME |
| Constructor Summary | |
|---|---|
RemoteScheduler(String schedId,
String host,
int port)
Construct a RemoteScheduler instance to proxy the given
RemoteableQuartzScheduler instance, and with the given
SchedulingContext. |
|
| Method Summary | |
|---|---|
void |
addCalendar(String calName,
Calendar calendar,
boolean replace,
boolean updateTriggers)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
addJob(JobDetail jobDetail,
boolean replace)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
boolean |
checkExists(JobKey jobKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
boolean |
checkExists(TriggerKey triggerKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
clear()
Calls the equivalent method on the 'proxied' QuartzScheduler. |
boolean |
deleteCalendar(String calName)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
boolean |
deleteJob(JobKey jobKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
boolean |
deleteJobs(List<JobKey> jobKeys)
Delete the identified Jobs from the Scheduler - and any
associated Triggers. |
Calendar |
getCalendar(String calName)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
List<String> |
getCalendarNames()
Calls the equivalent method on the 'proxied' QuartzScheduler. |
SchedulerContext |
getContext()
Returns the SchedulerContext of the Scheduler. |
List |
getCurrentlyExecutingJobs()
Calls the equivalent method on the 'proxied' QuartzScheduler. |
JobDetail |
getJobDetail(JobKey jobKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
List<String> |
getJobGroupNames()
Calls the equivalent method on the 'proxied' QuartzScheduler. |
Set<JobKey> |
getJobKeys(GroupMatcher<JobKey> matcher)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
ListenerManager |
getListenerManager()
Get a reference to the scheduler's ListenerManager,
through which listeners may be registered. |
SchedulerMetaData |
getMetaData()
Get a SchedulerMetaData object describing the settings
and capabilities of the scheduler instance. |
Set |
getPausedTriggerGroups()
Get the names of all Trigger groups that are paused. |
protected RemotableQuartzScheduler |
getRemoteScheduler()
|
String |
getSchedulerInstanceId()
Returns the instance Id of the Scheduler. |
String |
getSchedulerName()
Returns the name of the Scheduler. |
Trigger |
getTrigger(TriggerKey triggerKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
List<String> |
getTriggerGroupNames()
Calls the equivalent method on the 'proxied' QuartzScheduler. |
Set<TriggerKey> |
getTriggerKeys(GroupMatcher<TriggerKey> matcher)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
List<? extends Trigger> |
getTriggersOfJob(JobKey jobKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
Trigger.TriggerState |
getTriggerState(TriggerKey triggerKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
boolean |
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. |
protected SchedulerException |
invalidateHandleCreateException(String msg,
Exception cause)
|
boolean |
isInStandbyMode()
Calls the equivalent method on the 'proxied' QuartzScheduler. |
boolean |
isShutdown()
Calls the equivalent method on the 'proxied' QuartzScheduler. |
boolean |
isStarted()
Whether the scheduler has been started. |
void |
pauseAll()
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
pauseJob(JobKey jobKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
pauseJobs(GroupMatcher<JobKey> matcher)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
pauseTrigger(TriggerKey triggerKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
pauseTriggers(GroupMatcher<TriggerKey> matcher)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
Date |
rescheduleJob(TriggerKey triggerKey,
Trigger newTrigger)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
resumeAll()
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
resumeJob(JobKey jobKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
resumeJobs(GroupMatcher<JobKey> matcher)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
resumeTrigger(TriggerKey triggerKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
resumeTriggers(GroupMatcher<TriggerKey> matcher)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
Date |
scheduleJob(JobDetail jobDetail,
Trigger trigger)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
Date |
scheduleJob(Trigger trigger)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
scheduleJobs(Map<JobDetail,List<Trigger>> triggersAndJobs,
boolean replace)
Schedule all of the given jobs with the related set of triggers. |
void |
setJobFactory(org.quartz.spi.JobFactory factory)
Set the JobFactory that will be responsible for producing
instances of Job classes. |
void |
shutdown()
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
shutdown(boolean waitForJobsToComplete)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
standby()
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
start()
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
startDelayed(int seconds)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
triggerJob(JobKey jobKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
triggerJob(JobKey jobKey,
JobDataMap data)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
boolean |
unscheduleJob(TriggerKey triggerKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
boolean |
unscheduleJobs(List<TriggerKey> triggerKeys)
Remove all of the indicated Triggers from the scheduler. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
RemoteScheduler
public RemoteScheduler(String schedId, String host, int port)
Construct a
RemoteSchedulerinstance to proxy the givenRemoteableQuartzSchedulerinstance, and with the givenSchedulingContext.
| Method Detail |
|---|
getRemoteScheduler
protected RemotableQuartzScheduler getRemoteScheduler() throws SchedulerException
- Throws:
SchedulerException
invalidateHandleCreateException
protected SchedulerException invalidateHandleCreateException(String msg, Exception cause)
getSchedulerName
public String getSchedulerName() throws SchedulerException
Returns the name of the
Scheduler.- Specified by:
getSchedulerNamein interfaceScheduler
- Throws:
SchedulerException
getSchedulerInstanceId
public String getSchedulerInstanceId() throws SchedulerException
Returns the instance Id of the
Scheduler.- Specified by:
getSchedulerInstanceIdin interfaceScheduler
- Throws:
SchedulerException
getMetaData
public SchedulerMetaData getMetaData() throws SchedulerException
- Description copied from interface:
Scheduler - Get a
SchedulerMetaDataobject 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.
- Specified by:
getMetaDatain interfaceScheduler
- Throws:
SchedulerException
getContext
public SchedulerContext getContext() throws SchedulerException
Returns the
SchedulerContextof theScheduler.- Specified by:
getContextin interfaceScheduler
- Throws:
SchedulerException
start
public void start()
throws SchedulerException
Calls the equivalent method on the 'proxied'
QuartzScheduler.- Throws:
SchedulerException- ifshutdown()has been called, or there is an error within theScheduler.- See Also:
Scheduler.startDelayed(int),Scheduler.standby(),Scheduler.shutdown()
startDelayed
public void startDelayed(int seconds)
throws SchedulerException
Calls the equivalent method on the 'proxied'
QuartzScheduler.- Specified by:
startDelayedin interfaceScheduler
- Throws:
SchedulerException- ifshutdown()has been called, or there is an error within theScheduler.- See Also:
Scheduler.start(),Scheduler.standby(),Scheduler.shutdown()
standby
public void standby()
throws SchedulerException
Calls the equivalent method on the 'proxied'
QuartzScheduler.- Throws:
SchedulerException- See Also:
Scheduler.start(),Scheduler.pauseAll()
isStarted
public boolean isStarted()
throws SchedulerException
- Whether the scheduler has been started.
Note: This only reflects whether
start()has ever been called on this Scheduler, so it will returntrueeven if theScheduleris currently in standby mode or has been since shutdown. - Throws:
SchedulerException- See Also:
start(),isShutdown(),isInStandbyMode()
isInStandbyMode
public boolean isInStandbyMode()
throws SchedulerException
Calls the equivalent method on the 'proxied'
QuartzScheduler.- Specified by:
isInStandbyModein interfaceScheduler
- Throws:
SchedulerException- See Also:
Scheduler.standby(),Scheduler.start()
shutdown
public void shutdown()
throws SchedulerException
Calls the equivalent method on the 'proxied'
QuartzScheduler.- Throws:
SchedulerException- See Also:
Scheduler.shutdown(boolean)
shutdown
public void shutdown(boolean waitForJobsToComplete)
throws SchedulerException
Calls the equivalent method on the 'proxied'
QuartzScheduler.- Parameters:
waitForJobsToComplete- iftruethe scheduler will not allow this method to return until all currently executing jobs have completed.- Throws:
SchedulerException- See Also:
Scheduler.shutdown()
isShutdown
public boolean isShutdown()
throws SchedulerException
Calls the equivalent method on the 'proxied'
QuartzScheduler.- Specified by:
isShutdownin interfaceScheduler
- Throws:
SchedulerException
getCurrentlyExecutingJobs
public List getCurrentlyExecutingJobs() throws SchedulerException
Calls the equivalent method on the 'proxied'
QuartzScheduler.- Specified by:
getCurrentlyExecutingJobsin interfaceScheduler
- Throws:
SchedulerException- See Also:
JobExecutionContext
scheduleJob
public Date scheduleJob(JobDetail jobDetail, Trigger trigger) throws SchedulerException
Calls the equivalent method on the 'proxied'
QuartzScheduler.- Specified by:
scheduleJobin interfaceScheduler
- Throws:
SchedulerException- if the Job or Trigger cannot be added to the Scheduler, or there is an internal Scheduler error.
scheduleJob
public Date scheduleJob(Trigger trigger) throws SchedulerException
Calls the equivalent method on the 'proxied'
QuartzScheduler.- Specified by:
scheduleJobin interfaceScheduler
- Throws:
SchedulerException- if the indicated Job does not exist, or the Trigger cannot be added to the Scheduler, or there is an internal Scheduler error.
addJob
public void addJob(JobDetail jobDetail, boolean replace) throws SchedulerException
Calls the equivalent method on the 'proxied'
QuartzScheduler.- Throws:
SchedulerException- if there is an internal Scheduler error, or if the Job is not durable, or a Job with the same name already exists, andreplaceisfalse.
deleteJobs
public boolean deleteJobs(List<JobKey> jobKeys) throws SchedulerException
- Description copied from interface:
Scheduler - Delete the identified
Jobs from the Scheduler - and any associatedTriggers.Note that while this bulk operation is likely more efficient than invoking
deleteJob(JobKey jobKey)several times, it may have the adverse affect of holding data locks for a single long duration of time (rather than lots of small durations of time). - Specified by:
deleteJobsin interfaceScheduler
- Returns:
- true if all of the Jobs were found and deleted, false if one or more were not deleted.
- Throws:
SchedulerException- if there is an internal Scheduler error.
scheduleJobs
public void scheduleJobs(Map<JobDetail,List<Trigger>> triggersAndJobs, boolean replace) throws SchedulerException
- Description copied from interface:
Scheduler - Schedule all of the given jobs with the related set of triggers.
If any of the given jobs or triggers already exist (or more specifically, if the keys are not unique) and the replace parameter is not set to true then an exception will be thrown.
- Specified by:
scheduleJobsin interfaceScheduler
- Throws:
ObjectAlreadyExistsException- if the job/trigger keys are not unique and the replace flag is not set to true.SchedulerException
unscheduleJobs
public boolean unscheduleJobs(List<TriggerKey> triggerKeys) throws SchedulerException
- Description copied from interface:
Scheduler - Remove all of the indicated
Triggers from the scheduler.If the related job does not have any other triggers, and the job is not durable, then the job will also be deleted.
Note that while this bulk operation is likely more efficient than invoking
unscheduleJob(TriggerKey triggerKey)several times, it may have the adverse affect of holding data locks for a single long duration of time (rather than lots of small durations of time). - Specified by:
unscheduleJobsin interfaceScheduler
- Throws:
SchedulerException
deleteJob
public boolean deleteJob(JobKey jobKey) throws SchedulerException
Calls the equivalent method on the 'proxied'
QuartzScheduler.- Returns:
- true if the Job was found and deleted.
- Throws:
SchedulerException- if there is an internal Scheduler error.
unscheduleJob
public boolean unscheduleJob(TriggerKey triggerKey) throws SchedulerException
Calls the equivalent method on the 'proxied'
QuartzScheduler.- Specified by:
unscheduleJobin interfaceScheduler
- Throws:
SchedulerException
rescheduleJob
public Date rescheduleJob(TriggerKey triggerKey, Trigger newTrigger) throws SchedulerException
Calls the equivalent method on the 'proxied'
QuartzScheduler.- Specified by:
rescheduleJobin interfaceScheduler
- Parameters:
triggerKey- identity of the trigger to replacenewTrigger- The newTriggerto be stored.- Returns:
nullif aTriggerwith the given name & group was not found and removed from the store, otherwise the first fire time of the newly scheduled trigger.- Throws:
SchedulerException
triggerJob
public void triggerJob(JobKey jobKey) throws SchedulerException
Calls the equivalent method on the 'proxied'
QuartzScheduler.- Specified by:
triggerJobin interfaceScheduler
- Throws:
SchedulerException
triggerJob
public void triggerJob(JobKey jobKey, JobDataMap data) throws SchedulerException
Calls the equivalent method on the 'proxied'
QuartzScheduler.- Specified by:
triggerJobin interfaceScheduler
data- the (possiblynull) JobDataMap to be associated with the trigger that fires the job immediately.- Throws:
SchedulerException
pauseTrigger
public void pauseTrigger(TriggerKey triggerKey) throws SchedulerException
Calls the equivalent method on the 'proxied'
QuartzScheduler.- Specified by:
pauseTriggerin interfaceScheduler
- Throws:
SchedulerException- See Also:
Scheduler.resumeTrigger(TriggerKey)
pauseTriggers
public void pauseTriggers(GroupMatcher<TriggerKey> matcher) throws SchedulerException
Calls the equivalent method on the 'proxied'
QuartzScheduler.- Specified by:
pauseTriggersin interfaceScheduler
- Parameters:
matcher- The matcher to evaluate against know groups- Throws:
SchedulerException- See Also:
Scheduler.resumeTriggers(org.quartz.impl.matchers.GroupMatcher)
pauseJob
public void pauseJob(JobKey jobKey) throws SchedulerException
Calls the equivalent method on the 'proxied'
QuartzScheduler.- Throws:
SchedulerException- See Also:
Scheduler.resumeJob(JobKey)
pauseJobs
public void pauseJobs(GroupMatcher<JobKey> matcher) throws SchedulerException
Calls the equivalent method on the 'proxied'
QuartzScheduler.- Parameters:
matcher- The matcher to evaluate against know groups- Throws:
SchedulerException- On error- See Also:
Scheduler.resumeJobs(org.quartz.impl.matchers.GroupMatcher)
resumeTrigger
public void resumeTrigger(TriggerKey triggerKey) throws SchedulerException
Calls the equivalent method on the 'proxied'
QuartzScheduler.- Specified by:
resumeTriggerin interfaceScheduler
- Throws:
SchedulerException- See Also:
Scheduler.pauseTrigger(TriggerKey)
resumeTriggers
public void resumeTriggers(GroupMatcher<TriggerKey> matcher) throws SchedulerException
Calls the equivalent method on the 'proxied'
QuartzScheduler.- Specified by:
resumeTriggersin interfaceScheduler
- Parameters:
matcher- The matcher to evaluate against know paused groups- Throws:
SchedulerException- On error- See Also:
Scheduler.pauseTriggers(org.quartz.impl.matchers.GroupMatcher)
resumeJob
public void resumeJob(JobKey jobKey) throws SchedulerException
Calls the equivalent method on the 'proxied'
QuartzScheduler.- Throws:
SchedulerException- See Also:
Scheduler.pauseJob(JobKey)
resumeJobs
public void resumeJobs(GroupMatcher<JobKey> matcher) throws SchedulerException
Calls the equivalent method on the 'proxied'
QuartzScheduler.- Specified by:
resumeJobsin interfaceScheduler
- Parameters:
matcher- The matcher to evaluate against known paused groups- Throws:
SchedulerException- On error- See Also:
Scheduler.pauseJobs(GroupMatcher)
pauseAll
public void pauseAll()
throws SchedulerException
Calls the equivalent method on the 'proxied'
QuartzScheduler.
resumeAll
public void resumeAll()
throws SchedulerException
Calls the equivalent method on the 'proxied'
QuartzScheduler.- Throws:
SchedulerException- See Also:
Scheduler.pauseAll()
getJobGroupNames
public List<String> getJobGroupNames() throws SchedulerException
Calls the equivalent method on the 'proxied'
QuartzScheduler.- Specified by:
getJobGroupNamesin interfaceScheduler
- Throws:
SchedulerException
getJobKeys
public Set<JobKey> getJobKeys(GroupMatcher<JobKey> matcher) throws SchedulerException
Calls the equivalent method on the 'proxied'
QuartzScheduler.- Specified by:
getJobKeysin interfaceScheduler
- Parameters:
matcher- Matcher to evaluate against known groups- Returns:
- Set of all keys matching
- Throws:
SchedulerException- On error
getTriggersOfJob
public List<? extends Trigger> getTriggersOfJob(JobKey jobKey) throws SchedulerException
Calls the equivalent method on the 'proxied'
QuartzScheduler.- Specified by:
getTriggersOfJobin interfaceScheduler
- Throws:
SchedulerException
getTriggerGroupNames
public List<String> getTriggerGroupNames() throws SchedulerException
Calls the equivalent method on the 'proxied'
QuartzScheduler.- Specified by:
getTriggerGroupNamesin interfaceScheduler
- Throws:
SchedulerException
getTriggerKeys
public Set<TriggerKey> getTriggerKeys(GroupMatcher<TriggerKey> matcher) throws SchedulerException
Calls the equivalent method on the 'proxied'
QuartzScheduler.- Specified by:
getTriggerKeysin interfaceScheduler
- Parameters:
matcher- Matcher to evaluate against known groups- Returns:
- List of all keys matching
- Throws:
SchedulerException- On error
getJobDetail
public JobDetail getJobDetail(JobKey jobKey) throws SchedulerException
Calls the equivalent method on the 'proxied'
QuartzScheduler.- Specified by:
getJobDetailin interfaceScheduler
- Throws:
SchedulerException
checkExists
public boolean checkExists(JobKey jobKey) throws SchedulerException
Calls the equivalent method on the 'proxied'
QuartzScheduler.- Specified by:
checkExistsin interfaceScheduler
- Parameters:
jobKey- the identifier to check for- Returns:
- true if a Job exists with the given identifier
- Throws:
SchedulerException
checkExists
public boolean checkExists(TriggerKey triggerKey) throws SchedulerException
Calls the equivalent method on the 'proxied'
QuartzScheduler.- Specified by:
checkExistsin interfaceScheduler
- Parameters:
triggerKey- the identifier to check for- Returns:
- true if a Trigger exists with the given identifier
- Throws:
SchedulerException
clear
public void clear()
throws SchedulerException
Calls the equivalent method on the 'proxied'
QuartzScheduler.- Throws:
SchedulerException
getTrigger
public Trigger getTrigger(TriggerKey triggerKey) throws SchedulerException
Calls the equivalent method on the 'proxied'
QuartzScheduler.- Specified by:
getTriggerin interfaceScheduler
- Throws:
SchedulerException
getTriggerState
public Trigger.TriggerState getTriggerState(TriggerKey triggerKey) throws SchedulerException
Calls the equivalent method on the 'proxied'
QuartzScheduler.- Specified by:
getTriggerStatein interfaceScheduler
- Throws:
SchedulerException- See Also:
Trigger.TriggerState
addCalendar
public void addCalendar(String calName, Calendar calendar, boolean replace, boolean updateTriggers) throws SchedulerException
Calls the equivalent method on the 'proxied'
QuartzScheduler.- Specified by:
addCalendarin interfaceScheduler
updateTriggers- whether or not to update existing triggers that referenced the already existing calendar so that they are 'correct' based on the new trigger.- Throws:
SchedulerException- if there is an internal Scheduler error, or a Calendar with the same name already exists, andreplaceisfalse.
deleteCalendar
public boolean deleteCalendar(String calName) throws SchedulerException
Calls the equivalent method on the 'proxied'
QuartzScheduler.- Specified by:
deleteCalendarin interfaceScheduler
- Returns:
- true if the Calendar was found and deleted.
- Throws:
SchedulerException- if there is an internal Scheduler error.
getCalendar
public Calendar getCalendar(String calName) throws SchedulerException
Calls the equivalent method on the 'proxied'
QuartzScheduler.- Specified by:
getCalendarin interfaceScheduler
- Throws:
SchedulerException
getCalendarNames
public List<String> getCalendarNames() throws SchedulerException
Calls the equivalent method on the 'proxied'
QuartzScheduler.- Specified by:
getCalendarNamesin interfaceScheduler
- Throws:
SchedulerException
getPausedTriggerGroups
public Set getPausedTriggerGroups() throws SchedulerException
- Description copied from interface:
Scheduler - Get the names of all
Triggergroups that are paused. - Specified by:
getPausedTriggerGroupsin interfaceScheduler
- Throws:
SchedulerException- See Also:
Scheduler.getPausedTriggerGroups()
getListenerManager
public ListenerManager getListenerManager() throws SchedulerException
- Description copied from interface:
Scheduler - Get a reference to the scheduler's
ListenerManager, through which listeners may be registered. - Specified by:
getListenerManagerin interfaceScheduler
- Returns:
- the scheduler's
ListenerManager - Throws:
SchedulerException- if the scheduler is not local- See Also:
ListenerManager,JobListener,TriggerListener,SchedulerListener
interrupt
public boolean interrupt(JobKey jobKey) throws UnableToInterruptJobException
- Description copied from interface:
Scheduler - Request the interruption, within this Scheduler instance, of all
currently executing instances of the identified
Job, which must be an implementor of theInterruptableJobinterface.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 thatinterrupt()on one instances throws an exception, all remaining instances (that have not yet been interrupted) will not have theirinterrupt()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
Scheduler.getCurrentlyExecutingJobs()to obtain a handle to the job instance, and then invokeinterrupt()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.
- Returns:
- true is at least one instance of the identified job was found and interrupted.
- Throws:
UnableToInterruptJobException- if the job does not implementInterruptableJob, or there is an exception while interrupting the job.- See Also:
Scheduler.interrupt(JobKey)
setJobFactory
public void setJobFactory(org.quartz.spi.JobFactory factory)
throws SchedulerException
- Description copied from interface:
Scheduler - Set the
JobFactorythat will be responsible for producing instances ofJobclasses.JobFactories may be of use to those wishing to have their application produce
Jobinstances via some special mechanism, such as to give the opportunity for dependency injection. - Specified by:
setJobFactoryin interfaceScheduler
- Throws:
SchedulerException- See Also:
Scheduler.setJobFactory(org.quartz.spi.JobFactory)
|
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
Copyright 2001-2011, Terracotta, Inc.
org.quartz.impl.RemoteScheduler