Uses of Class org.quartz.SchedulerException (Quartz Parent POM 2.0.1 API)
From Quartz Java
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
Uses of Class
org.quartz.SchedulerException
| Packages that use SchedulerException | |
|---|---|
| org.quartz | The main package of Quartz, containing the client-side interfaces. |
| org.quartz.core | Contains the core classes and interfaces for the Quartz job scheduler. |
| org.quartz.core.jmx | |
| org.quartz.ee.jmx.jboss | |
| org.quartz.ee.jta | |
| org.quartz.impl | Contains implementations of the SchedulerFactory, JobStore, ThreadPool, and other interfaces required by the org.quartz.core.QuartzScheduler. |
| org.quartz.impl.jdbcjobstore | |
| org.quartz.impl.triggers | This package contains Trigger implementations that ship with Quartz. |
| org.quartz.jobs.ee.jms | |
| org.quartz.listeners | |
| org.quartz.locality | |
| org.quartz.plugins | |
| org.quartz.plugins.history | |
| org.quartz.plugins.management | |
| org.quartz.plugins.xml | |
| org.quartz.simpl | Contains simple / light-weight implementations (with no dependencies on external libraries) of interfaces required by the org.quartz.core.QuartzScheduler. |
| org.quartz.utils | |
| org.quartz.xml | |
| Uses of SchedulerException in org.quartz |
|---|
| Subclasses of SchedulerException in org.quartz | |
|---|---|
class |
JobExecutionException
An exception that can be thrown by a |
class |
JobPersistenceException
An exception that is thrown to indicate that there has been a failure in the scheduler's underlying persistence mechanism. |
class |
ObjectAlreadyExistsException
An exception that is thrown to indicate that an attempt to store a new object (i.e. |
class |
SchedulerConfigException
An exception that is thrown to indicate that there is a misconfiguration of the SchedulerFactory- or one of the components it
configures. |
class |
UnableToInterruptJobException
An exception that is thrown to indicate that a call to InterruptableJob.interrupt() failed without interrupting the Job. |
| Methods in org.quartz with parameters of type SchedulerException | |
|---|---|
void |
SchedulerListener.schedulerError(String msg,
SchedulerException cause)
Called by the |
| Methods in org.quartz that throw SchedulerException | |
|---|---|
void |
Scheduler.addCalendar(String calName,
Calendar calendar,
boolean replace,
boolean updateTriggers)
Add (register) the given Calendar to the Scheduler. |
void |
Scheduler.addJob(JobDetail jobDetail,
boolean replace)
Add the given Job to the Scheduler - with no associated
Trigger. |
boolean |
Scheduler.checkExists(JobKey jobKey)
Determine whether a Job with the given identifier already
exists within the scheduler. |
boolean |
Scheduler.checkExists(TriggerKey triggerKey)
Determine whether a Trigger with the given identifier already
exists within the scheduler. |
void |
Scheduler.clear()
Clears (deletes!) all scheduling data - all Jobs, Triggers
Calendars. |
boolean |
Scheduler.deleteCalendar(String calName)
Delete the identified Calendar from the Scheduler. |
boolean |
Scheduler.deleteJob(JobKey jobKey)
Delete the identified Job from the Scheduler - and any
associated Triggers. |
boolean |
Scheduler.deleteJobs(List<JobKey> jobKeys)
Delete the identified Jobs from the Scheduler - and any
associated Triggers. |
Collection<Scheduler> |
SchedulerFactory.getAllSchedulers()
Returns handles to all known Schedulers (made by any SchedulerFactory within this jvm.). |
Calendar |
Scheduler.getCalendar(String calName)
Get the |
List<String> |
Scheduler.getCalendarNames()
Get the names of all registered |
SchedulerContext |
Scheduler.getContext()
Returns the SchedulerContext of the Scheduler. |
List<JobExecutionContext> |
Scheduler.getCurrentlyExecutingJobs()
Return a list of JobExecutionContext objects that
represent all currently executing Jobs in this Scheduler instance. |
JobDetail |
Scheduler.getJobDetail(JobKey jobKey)
Get the |
List<String> |
Scheduler.getJobGroupNames()
Get the names of all known |
Set<JobKey> |
Scheduler.getJobKeys(GroupMatcher<JobKey> matcher)
Get the keys of all the |
ListenerManager |
Scheduler.getListenerManager()
Get a reference to the scheduler's ListenerManager,
through which listeners may be registered. |
SchedulerMetaData |
Scheduler.getMetaData()
Get a SchedulerMetaData object describing the settings
and capabilities of the scheduler instance. |
Set<String> |
Scheduler.getPausedTriggerGroups()
Get the names of all |
Scheduler |
SchedulerFactory.getScheduler()
Returns a client-usable handle to a Scheduler. |
Scheduler |
SchedulerFactory.getScheduler(String schedName)
Returns a handle to the Scheduler with the given name, if it exists. |
String |
Scheduler.getSchedulerInstanceId()
Returns the instance Id of the Scheduler. |
String |
Scheduler.getSchedulerName()
Returns the name of the Scheduler. |
String |
SchedulerMetaData.getSummary()
Returns a formatted (human readable) String describing all the Scheduler's
meta-data values. |
Trigger |
Scheduler.getTrigger(TriggerKey triggerKey)
Get the |
List<String> |
Scheduler.getTriggerGroupNames()
Get the names of all known |
Set<TriggerKey> |
Scheduler.getTriggerKeys(GroupMatcher<TriggerKey> matcher)
Get the names of all the |
List<? extends Trigger> |
Scheduler.getTriggersOfJob(JobKey jobKey)
Get all |
Trigger.TriggerState |
Scheduler.getTriggerState(TriggerKey triggerKey)
Get the current state of the identified |
boolean |
Scheduler.isInStandbyMode()
Reports whether the Scheduler is in stand-by mode. |
boolean |
Scheduler.isShutdown()
Reports whether the Scheduler has been shutdown. |
boolean |
Scheduler.isStarted()
Whether the scheduler has been started. |
void |
Scheduler.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 |
Scheduler.pauseJob(JobKey jobKey)
Pause the |
void |
Scheduler.pauseJobs(GroupMatcher<JobKey> matcher)
Pause all of the |
void |
Scheduler.pauseTrigger(TriggerKey triggerKey)
Pause the |
void |
Scheduler.pauseTriggers(GroupMatcher<TriggerKey> matcher)
Pause all of the |
Date |
Scheduler.rescheduleJob(TriggerKey triggerKey,
Trigger newTrigger)
Remove (delete) the |
void |
Scheduler.resumeAll()
Resume (un-pause) all triggers - similar to calling resumeTriggerGroup(group) on every group. |
void |
Scheduler.resumeJob(JobKey jobKey)
Resume (un-pause) the |
void |
Scheduler.resumeJobs(GroupMatcher<JobKey> matcher)
Resume (un-pause) all of the |
void |
Scheduler.resumeTrigger(TriggerKey triggerKey)
Resume (un-pause) the |
void |
Scheduler.resumeTriggers(GroupMatcher<TriggerKey> matcher)
Resume (un-pause) all of the |
Date |
Scheduler.scheduleJob(JobDetail jobDetail,
Trigger trigger)
Add the given |
Date |
Scheduler.scheduleJob(Trigger trigger)
Schedule the given |
void |
Scheduler.scheduleJobs(Map<JobDetail,List<Trigger>> triggersAndJobs,
boolean replace)
Schedule all of the given jobs with the related set of triggers. |
void |
Scheduler.setJobFactory(org.quartz.spi.JobFactory factory)
Set the JobFactory that will be responsible for producing
instances of Job classes. |
void |
Scheduler.shutdown()
Halts the Scheduler's firing of |
void |
Scheduler.shutdown(boolean waitForJobsToComplete)
Halts the Scheduler's firing of |
void |
Scheduler.standby()
Temporarily halts the Scheduler's firing of |
void |
Scheduler.start()
Starts the Scheduler's threads that fire |
void |
Scheduler.startDelayed(int seconds)
Calls {#start()} after the indicated number of seconds. |
void |
Scheduler.triggerJob(JobKey jobKey)
Trigger the identified |
void |
Scheduler.triggerJob(JobKey jobKey,
JobDataMap data)
Trigger the identified |
boolean |
Scheduler.unscheduleJob(TriggerKey triggerKey)
Remove the indicated |
boolean |
Scheduler.unscheduleJobs(List<TriggerKey> triggerKeys)
Remove all of the indicated |
| Uses of SchedulerException in org.quartz.core |
|---|
| Methods in org.quartz.core with parameters of type SchedulerException | |
|---|---|
void |
QuartzScheduler.notifySchedulerListenersError(String msg,
SchedulerException se)
|
void |
QuartzSchedulerMBeanImpl.schedulerError(String msg,
SchedulerException cause)
|
| Methods in org.quartz.core that throw SchedulerException | |
|---|---|
void |
QuartzScheduler.addCalendar(String calName,
Calendar calendar,
boolean replace,
boolean updateTriggers)
Add (register) the given Calendar to the Scheduler. |
void |
RemotableQuartzScheduler.addCalendar(String calName,
Calendar calendar,
boolean replace,
boolean updateTriggers)
|
void |
QuartzScheduler.addJob(JobDetail jobDetail,
boolean replace)
Add the given Job to the Scheduler - with no associated
Trigger. |
void |
RemotableQuartzScheduler.addJob(JobDetail jobDetail,
boolean replace)
|
protected void |
JobRunShell.begin()
|
boolean |
QuartzScheduler.checkExists(JobKey jobKey)
Determine whether a Job with the given identifier already
exists within the scheduler. |
boolean |
RemotableQuartzScheduler.checkExists(JobKey jobKey)
|
boolean |
QuartzScheduler.checkExists(TriggerKey triggerKey)
Determine whether a Trigger with the given identifier already
exists within the scheduler. |
boolean |
RemotableQuartzScheduler.checkExists(TriggerKey triggerKey)
|
void |
QuartzScheduler.clear()
Clears (deletes!) all scheduling data - all Jobs, Triggers
Calendars. |
void |
RemotableQuartzScheduler.clear()
|
protected void |
JobRunShell.complete(boolean successfulExecution)
|
JobRunShell |
JobRunShellFactory.createJobRunShell(org.quartz.spi.TriggerFiredBundle bundle)
Called by the |
boolean |
QuartzScheduler.deleteCalendar(String calName)
Delete the identified Calendar from the Scheduler. |
boolean |
RemotableQuartzScheduler.deleteCalendar(String calName)
|
boolean |
QuartzScheduler.deleteJob(JobKey jobKey)
Delete the identified Job from the Scheduler - and any
associated Triggers. |
boolean |
RemotableQuartzScheduler.deleteJob(JobKey jobKey)
|
boolean |
QuartzScheduler.deleteJobs(List<JobKey> jobKeys)
|
boolean |
RemotableQuartzScheduler.deleteJobs(List<JobKey> jobKeys)
|
Calendar |
QuartzScheduler.getCalendar(String calName)
Get the |
Calendar |
RemotableQuartzScheduler.getCalendar(String calName)
|
List<String> |
QuartzScheduler.getCalendarNames()
Get the names of all registered |
List<String> |
RemotableQuartzScheduler.getCalendarNames()
|
List<JobExecutionContext> |
RemotableQuartzScheduler.getCurrentlyExecutingJobs()
|
JobDetail |
QuartzScheduler.getJobDetail(JobKey jobKey)
Get the |
JobDetail |
RemotableQuartzScheduler.getJobDetail(JobKey jobKey)
|
List<String> |
QuartzScheduler.getJobGroupNames()
Get the names of all known |
List<String> |
RemotableQuartzScheduler.getJobGroupNames()
|
Set<JobKey> |
QuartzScheduler.getJobKeys(GroupMatcher<JobKey> matcher)
Get the names of all the |
Set<JobKey> |
RemotableQuartzScheduler.getJobKeys(GroupMatcher<JobKey> matcher)
|
Set |
QuartzScheduler.getPausedTriggerGroups()
|
Set<String> |
RemotableQuartzScheduler.getPausedTriggerGroups()
|
SchedulerContext |
QuartzScheduler.getSchedulerContext()
Returns the SchedulerContext of the Scheduler. |
SchedulerContext |
RemotableQuartzScheduler.getSchedulerContext()
|
Trigger |
QuartzScheduler.getTrigger(TriggerKey triggerKey)
Get the |
Trigger |
RemotableQuartzScheduler.getTrigger(TriggerKey triggerKey)
|
List<String> |
QuartzScheduler.getTriggerGroupNames()
Get the names of all known |
List<String> |
RemotableQuartzScheduler.getTriggerGroupNames()
|
Set<TriggerKey> |
QuartzScheduler.getTriggerKeys(GroupMatcher<TriggerKey> matcher)
Get the names of all the |
Set<TriggerKey> |
RemotableQuartzScheduler.getTriggerKeys(GroupMatcher<TriggerKey> matcher)
|
List<? extends Trigger> |
QuartzScheduler.getTriggersOfJob(JobKey jobKey)
Get all |
List<? extends Trigger> |
RemotableQuartzScheduler.getTriggersOfJob(JobKey jobKey)
|
Trigger.TriggerState |
QuartzScheduler.getTriggerState(TriggerKey triggerKey)
Get the current state of the identified |
Trigger.TriggerState |
RemotableQuartzScheduler.getTriggerState(TriggerKey triggerKey)
|
void |
QuartzScheduler.initialize()
|
void |
JobRunShell.initialize(QuartzScheduler qs)
|
void |
QuartzScheduler.notifyJobListenersToBeExecuted(JobExecutionContext jec)
|
void |
QuartzScheduler.notifyJobListenersWasExecuted(JobExecutionContext jec,
JobExecutionException je)
|
void |
QuartzScheduler.notifyJobListenersWasVetoed(JobExecutionContext jec)
|
void |
QuartzScheduler.notifyTriggerListenersComplete(JobExecutionContext jec,
Trigger.CompletedExecutionInstruction instCode)
|
boolean |
QuartzScheduler.notifyTriggerListenersFired(JobExecutionContext jec)
|
void |
QuartzScheduler.notifyTriggerListenersMisfired(Trigger trigger)
|
void |
QuartzScheduler.pauseAll()
Pause all triggers - equivalent of calling pauseTriggers(GroupMatcher
with a matcher matching all known groups. |
void |
RemotableQuartzScheduler.pauseAll()
|
void |
QuartzScheduler.pauseJob(JobKey jobKey)
Pause the |
void |
RemotableQuartzScheduler.pauseJob(JobKey jobKey)
|
void |
QuartzScheduler.pauseJobs(GroupMatcher<JobKey> groupMatcher)
Pause all of the |
void |
RemotableQuartzScheduler.pauseJobs(GroupMatcher<JobKey> matcher)
|
void |
QuartzScheduler.pauseTrigger(TriggerKey triggerKey)
Pause the |
void |
RemotableQuartzScheduler.pauseTrigger(TriggerKey triggerKey)
|
void |
QuartzScheduler.pauseTriggers(GroupMatcher<TriggerKey> matcher)
Pause all of the |
void |
RemotableQuartzScheduler.pauseTriggers(GroupMatcher<TriggerKey> matcher)
|
Date |
QuartzScheduler.rescheduleJob(TriggerKey triggerKey,
Trigger newTrigger)
Remove (delete) the |
Date |
RemotableQuartzScheduler.rescheduleJob(TriggerKey triggerKey,
Trigger newTrigger)
|
void |
QuartzScheduler.resumeAll()
Resume (un-pause) all triggers - equivalent of calling resumeTriggerGroup(group)
on every group. |
void |
RemotableQuartzScheduler.resumeAll()
|
void |
QuartzScheduler.resumeJob(JobKey jobKey)
Resume (un-pause) the |
void |
RemotableQuartzScheduler.resumeJob(JobKey jobKey)
|
void |
QuartzScheduler.resumeJobs(GroupMatcher<JobKey> matcher)
Resume (un-pause) all of the |
void |
RemotableQuartzScheduler.resumeJobs(GroupMatcher<JobKey> matcher)
|
void |
QuartzScheduler.resumeTrigger(TriggerKey triggerKey)
Resume (un-pause) the |
void |
RemotableQuartzScheduler.resumeTrigger(TriggerKey triggerKey)
|
void |
QuartzScheduler.resumeTriggers(GroupMatcher<TriggerKey> matcher)
Resume (un-pause) all of the |
void |
RemotableQuartzScheduler.resumeTriggers(GroupMatcher<TriggerKey> matcher)
|
Date |
QuartzScheduler.scheduleJob(JobDetail jobDetail,
Trigger trigger)
Add the |
Date |
RemotableQuartzScheduler.scheduleJob(JobDetail jobDetail,
Trigger trigger)
|
Date |
QuartzScheduler.scheduleJob(Trigger trigger)
Schedule the given |
Date |
RemotableQuartzScheduler.scheduleJob(Trigger trigger)
|
void |
QuartzScheduler.scheduleJobs(Map<JobDetail,List<Trigger>> triggersAndJobs,
boolean replace)
|
void |
RemotableQuartzScheduler.scheduleJobs(Map<JobDetail,List<Trigger>> triggersAndJobs,
boolean replace)
|
void |
QuartzScheduler.setJobFactory(org.quartz.spi.JobFactory factory)
|
void |
QuartzScheduler.start()
Starts the QuartzScheduler's threads that fire |
void |
RemotableQuartzScheduler.start()
|
void |
QuartzScheduler.startDelayed(int seconds)
|
void |
RemotableQuartzScheduler.startDelayed(int seconds)
|
void |
QuartzScheduler.triggerJob(JobKey jobKey,
JobDataMap data)
Trigger the identified |
void |
RemotableQuartzScheduler.triggerJob(JobKey jobKey,
JobDataMap data)
|
void |
QuartzScheduler.triggerJob(org.quartz.spi.OperableTrigger trig)
Store and schedule the identified |
void |
RemotableQuartzScheduler.triggerJob(org.quartz.spi.OperableTrigger trig)
|
boolean |
QuartzScheduler.unscheduleJob(TriggerKey triggerKey)
Remove the indicated |
boolean |
RemotableQuartzScheduler.unscheduleJob(TriggerKey triggerKey)
|
boolean |
QuartzScheduler.unscheduleJobs(List<TriggerKey> triggerKeys)
|
boolean |
RemotableQuartzScheduler.unscheduleJobs(List<TriggerKey> triggerKeys)
|
void |
QuartzScheduler.validateState()
|
| Constructors in org.quartz.core that throw SchedulerException | |
|---|---|
QuartzScheduler(QuartzSchedulerResources resources,
long idleWaitTime,
long dbRetryInterval)
Create a QuartzScheduler with the given configuration
properties. |
|
| Uses of SchedulerException in org.quartz.core.jmx |
|---|
| Methods in org.quartz.core.jmx that throw SchedulerException | |
|---|---|
static CompositeData |
JobExecutionContextSupport.toCompositeData(JobExecutionContext jec)
|
static TabularData |
JobExecutionContextSupport.toTabularData(List<JobExecutionContext> executingJobs)
|
| Uses of SchedulerException in org.quartz.ee.jmx.jboss |
|---|
| Methods in org.quartz.ee.jmx.jboss that throw SchedulerException | |
|---|---|
protected Object |
JBoss4RMIRemoteMBeanScheduler.getAttribute(String attribute)
|
protected AttributeList |
JBoss4RMIRemoteMBeanScheduler.getAttributes(String[] attributes)
|
void |
JBoss4RMIRemoteMBeanScheduler.initialize()
Initialize this remote MBean scheduler, getting the JBoss RMIAdaptor for communication. |
protected Object |
JBoss4RMIRemoteMBeanScheduler.invoke(String operationName,
Object[] params,
String[] signature)
|
| Constructors in org.quartz.ee.jmx.jboss that throw SchedulerException | |
|---|---|
JBoss4RMIRemoteMBeanScheduler()
|
|
| Uses of SchedulerException in org.quartz.ee.jta |
|---|
| Methods in org.quartz.ee.jta that throw SchedulerException | |
|---|---|
protected void |
JTAJobRunShell.begin()
|
protected void |
JTAJobRunShell.complete(boolean successfulExecution)
|
JobRunShell |
JTAAnnotationAwareJobRunShellFactory.createJobRunShell(org.quartz.spi.TriggerFiredBundle bundle)
Called by the QuartzSchedulerThread
to obtain instances of
JobRunShell. |
JobRunShell |
JTAJobRunShellFactory.createJobRunShell(org.quartz.spi.TriggerFiredBundle bundle)
Called by the QuartzSchedulerThread
to obtain instances of
JobRunShell. |
static UserTransaction |
UserTransactionHelper.lookupUserTransaction()
Create/Lookup a UserTransaction in the InitialContext via the name set in setUserTxLocation(). |
| Uses of SchedulerException in org.quartz.impl |
|---|
| Methods in org.quartz.impl that return SchedulerException | |
|---|---|
protected SchedulerException |
RemoteScheduler.invalidateHandleCreateException(String msg,
Exception cause)
|
| Methods in org.quartz.impl with parameters of type SchedulerException | |
|---|---|
void |
QuartzServer.schedulerError(String msg,
SchedulerException cause)
Called by the |
| Methods in org.quartz.impl that throw SchedulerException | |
|---|---|
void |
RemoteScheduler.addCalendar(String calName,
Calendar calendar,
boolean replace,
boolean updateTriggers)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
StdScheduler.addCalendar(String calName,
Calendar calendar,
boolean replace,
boolean updateTriggers)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
RemoteMBeanScheduler.addCalendar(String calName,
Calendar calendar,
boolean replace,
boolean updateTriggers)
Calls the equivalent method on the 'proxied' QuartzScheduler,
passing the SchedulingContext associated with this
instance. |
void |
RemoteScheduler.addJob(JobDetail jobDetail,
boolean replace)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
StdScheduler.addJob(JobDetail jobDetail,
boolean replace)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
RemoteMBeanScheduler.addJob(JobDetail jobDetail,
boolean replace)
Calls the equivalent method on the 'proxied' QuartzScheduler,
passing the SchedulingContext associated with this
instance. |
void |
SchedulerRepository.bind(Scheduler sched)
|
boolean |
RemoteScheduler.checkExists(JobKey jobKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
boolean |
StdScheduler.checkExists(JobKey jobKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
boolean |
RemoteMBeanScheduler.checkExists(JobKey jobKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
boolean |
RemoteScheduler.checkExists(TriggerKey triggerKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
boolean |
StdScheduler.checkExists(TriggerKey triggerKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
boolean |
RemoteMBeanScheduler.checkExists(TriggerKey triggerKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
RemoteScheduler.clear()
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
StdScheduler.clear()
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
RemoteMBeanScheduler.clear()
|
JobRunShell |
StdJobRunShellFactory.createJobRunShell(org.quartz.spi.TriggerFiredBundle bndle)
Called by the QuartzSchedulerThread
to obtain instances of
JobRunShell. |
void |
DirectSchedulerFactory.createRemoteScheduler(String rmiHost,
int rmiPort)
Creates a proxy to a remote scheduler. |
void |
DirectSchedulerFactory.createRemoteScheduler(String schedulerName,
String schedulerInstanceId,
String rmiHost,
int rmiPort)
Same as DirectSchedulerFactory.createRemoteScheduler(String rmiHost, int rmiPort),
with the addition of specifying the scheduler name and instance ID. |
void |
DirectSchedulerFactory.createRemoteScheduler(String schedulerName,
String schedulerInstanceId,
String rmiBindName,
String rmiHost,
int rmiPort)
Same as DirectSchedulerFactory.createRemoteScheduler(String rmiHost, int rmiPort),
with the addition of specifying the scheduler name, instance ID, and rmi
bind name. |
void |
DirectSchedulerFactory.createScheduler(String schedulerName,
String schedulerInstanceId,
org.quartz.spi.ThreadPool threadPool,
org.quartz.spi.JobStore jobStore)
Same as DirectSchedulerFactory.createScheduler(ThreadPool threadPool, JobStore jobStore),
with the addition of specifying the scheduler name and instance ID. |
void |
DirectSchedulerFactory.createScheduler(String schedulerName,
String schedulerInstanceId,
org.quartz.spi.ThreadPool threadPool,
org.quartz.spi.JobStore jobStore,
Map schedulerPluginMap,
String rmiRegistryHost,
int rmiRegistryPort,
long idleWaitTime,
long dbFailureRetryInterval,
boolean jmxExport,
String jmxObjectName)
Creates a scheduler using the specified thread pool, job store, and plugins, and binds it to RMI. |
void |
DirectSchedulerFactory.createScheduler(String schedulerName,
String schedulerInstanceId,
org.quartz.spi.ThreadPool threadPool,
org.quartz.spi.JobStore jobStore,
String rmiRegistryHost,
int rmiRegistryPort,
long idleWaitTime,
long dbFailureRetryInterval)
Creates a scheduler using the specified thread pool and job store and binds it to RMI. |
void |
DirectSchedulerFactory.createScheduler(org.quartz.spi.ThreadPool threadPool,
org.quartz.spi.JobStore jobStore)
Creates a scheduler using the specified thread pool and job store. |
void |
DirectSchedulerFactory.createVolatileSchduler(int maxThreads)
Deprecated. see correctly spelled method. |
void |
DirectSchedulerFactory.createVolatileScheduler(int maxThreads)
Creates an in memory job store ( |
boolean |
RemoteScheduler.deleteCalendar(String calName)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
boolean |
StdScheduler.deleteCalendar(String calName)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
boolean |
RemoteMBeanScheduler.deleteCalendar(String calName)
Calls the equivalent method on the 'proxied' QuartzScheduler,
passing the SchedulingContext associated with this
instance. |
boolean |
RemoteScheduler.deleteJob(JobKey jobKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
boolean |
StdScheduler.deleteJob(JobKey jobKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
boolean |
RemoteMBeanScheduler.deleteJob(JobKey jobKey)
Calls the equivalent method on the 'proxied' QuartzScheduler,
passing the SchedulingContext associated with this
instance. |
boolean |
RemoteScheduler.deleteJobs(List<JobKey> jobKeys)
|
boolean |
StdScheduler.deleteJobs(List<JobKey> jobKeys)
|
boolean |
RemoteMBeanScheduler.deleteJobs(List<JobKey> jobKeys)
|
Collection<Scheduler> |
StdSchedulerFactory.getAllSchedulers()
Returns a handle to all known Schedulers (made by any StdSchedulerFactory instance.). |
Collection |
DirectSchedulerFactory.getAllSchedulers()
Returns a handle to all known Schedulers (made by any StdSchedulerFactory instance.). |
protected abstract Object |
RemoteMBeanScheduler.getAttribute(String attribute)
Get the given attribute of the remote Scheduler MBean. |
protected abstract AttributeList |
RemoteMBeanScheduler.getAttributes(String[] attributes)
Get the given attributes of the remote Scheduler MBean. |
Calendar |
RemoteScheduler.getCalendar(String calName)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
Calendar |
StdScheduler.getCalendar(String calName)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
Calendar |
RemoteMBeanScheduler.getCalendar(String calName)
Calls the equivalent method on the 'proxied' QuartzScheduler,
passing the SchedulingContext associated with this
instance. |
List<String> |
RemoteScheduler.getCalendarNames()
Calls the equivalent method on the 'proxied' QuartzScheduler. |
List<String> |
StdScheduler.getCalendarNames()
Calls the equivalent method on the 'proxied' QuartzScheduler. |
List<String> |
RemoteMBeanScheduler.getCalendarNames()
Calls the equivalent method on the 'proxied' QuartzScheduler,
passing the SchedulingContext associated with this
instance. |
SchedulerContext |
RemoteScheduler.getContext()
Returns the SchedulerContext of the Scheduler. |
SchedulerContext |
StdScheduler.getContext()
Returns the SchedulerContext of the Scheduler. |
SchedulerContext |
RemoteMBeanScheduler.getContext()
Returns the SchedulerContext of the Scheduler. |
List |
RemoteScheduler.getCurrentlyExecutingJobs()
Calls the equivalent method on the 'proxied' QuartzScheduler. |
List<JobExecutionContext> |
RemoteMBeanScheduler.getCurrentlyExecutingJobs()
Calls the equivalent method on the 'proxied' QuartzScheduler. |
static Scheduler |
StdSchedulerFactory.getDefaultScheduler()
Returns a handle to the default Scheduler, creating it if it does not yet exist. |
JobDetail |
RemoteScheduler.getJobDetail(JobKey jobKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
JobDetail |
StdScheduler.getJobDetail(JobKey jobKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
JobDetail |
RemoteMBeanScheduler.getJobDetail(JobKey jobKey)
Calls the equivalent method on the 'proxied' QuartzScheduler,
passing the SchedulingContext associated with this
instance. |
List<String> |
RemoteScheduler.getJobGroupNames()
Calls the equivalent method on the 'proxied' QuartzScheduler. |
List<String> |
StdScheduler.getJobGroupNames()
Calls the equivalent method on the 'proxied' QuartzScheduler. |
List<String> |
RemoteMBeanScheduler.getJobGroupNames()
Calls the equivalent method on the 'proxied' QuartzScheduler,
passing the SchedulingContext associated with this
instance. |
Set<JobKey> |
RemoteScheduler.getJobKeys(GroupMatcher<JobKey> matcher)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
Set<JobKey> |
StdScheduler.getJobKeys(GroupMatcher<JobKey> matcher)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
Set<JobKey> |
RemoteMBeanScheduler.getJobKeys(GroupMatcher<JobKey> matcher)
Calls the equivalent method on the 'proxied' QuartzScheduler,
passing the SchedulingContext associated with this
instance. |
ListenerManager |
RemoteScheduler.getListenerManager()
|
ListenerManager |
StdScheduler.getListenerManager()
|
ListenerManager |
RemoteMBeanScheduler.getListenerManager()
Calls the equivalent method on the 'proxied' QuartzScheduler. |
SchedulerMetaData |
RemoteScheduler.getMetaData()
|
SchedulerMetaData |
RemoteMBeanScheduler.getMetaData()
|
Set |
RemoteScheduler.getPausedTriggerGroups()
|
Set |
StdScheduler.getPausedTriggerGroups()
|
Set<String> |
RemoteMBeanScheduler.getPausedTriggerGroups()
|
protected RemotableQuartzScheduler |
RemoteScheduler.getRemoteScheduler()
|
Scheduler |
StdSchedulerFactory.getScheduler()
Returns a handle to the Scheduler produced by this factory. |
Scheduler |
DirectSchedulerFactory.getScheduler()
Returns a handle to the Scheduler produced by this factory. |
Scheduler |
StdSchedulerFactory.getScheduler(String schedName)
Returns a handle to the Scheduler with the given name, if it exists (if it has already been instantiated). |
Scheduler |
DirectSchedulerFactory.getScheduler(String schedName)
Returns a handle to the Scheduler with the given name, if it exists. |
String |
RemoteScheduler.getSchedulerInstanceId()
Returns the instance Id of the Scheduler. |
String |
RemoteMBeanScheduler.getSchedulerInstanceId()
Returns the instance Id of the Scheduler. |
String |
RemoteScheduler.getSchedulerName()
Returns the name of the Scheduler. |
String |
RemoteMBeanScheduler.getSchedulerName()
Returns the name of the Scheduler. |
Trigger |
RemoteScheduler.getTrigger(TriggerKey triggerKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
Trigger |
StdScheduler.getTrigger(TriggerKey triggerKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
Trigger |
RemoteMBeanScheduler.getTrigger(TriggerKey triggerKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
List<String> |
RemoteScheduler.getTriggerGroupNames()
Calls the equivalent method on the 'proxied' QuartzScheduler. |
List<String> |
StdScheduler.getTriggerGroupNames()
Calls the equivalent method on the 'proxied' QuartzScheduler. |
List<String> |
RemoteMBeanScheduler.getTriggerGroupNames()
Calls the equivalent method on the 'proxied' QuartzScheduler,
passing the SchedulingContext associated with this
instance. |
Set<TriggerKey> |
RemoteScheduler.getTriggerKeys(GroupMatcher<TriggerKey> matcher)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
Set<TriggerKey> |
StdScheduler.getTriggerKeys(GroupMatcher<TriggerKey> matcher)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
Set<TriggerKey> |
RemoteMBeanScheduler.getTriggerKeys(GroupMatcher<TriggerKey> matcher)
Calls the equivalent method on the 'proxied' QuartzScheduler,
passing the SchedulingContext associated with this
instance. |
List<? extends Trigger> |
RemoteScheduler.getTriggersOfJob(JobKey jobKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
List<? extends Trigger> |
StdScheduler.getTriggersOfJob(JobKey jobKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
List<Trigger> |
RemoteMBeanScheduler.getTriggersOfJob(JobKey jobKey)
Calls the equivalent method on the 'proxied' QuartzScheduler,
passing the SchedulingContext associated with this
instance. |
Trigger.TriggerState |
RemoteScheduler.getTriggerState(TriggerKey triggerKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
Trigger.TriggerState |
StdScheduler.getTriggerState(TriggerKey triggerKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
Trigger.TriggerState |
RemoteMBeanScheduler.getTriggerState(TriggerKey triggerKey)
Calls the equivalent method on the 'proxied' QuartzScheduler,
passing the SchedulingContext associated with this
instance. |
void |
StdSchedulerFactory.initialize()
Initialize the |
abstract void |
RemoteMBeanScheduler.initialize()
Initialize this RemoteMBeanScheduler instance, connecting to the remote MBean server. |
void |
StdSchedulerFactory.initialize(InputStream propertiesStream)
Initialize the |
void |
StdSchedulerFactory.initialize(Properties props)
Initialize the |
void |
StdSchedulerFactory.initialize(String filename)
Initialize the |
protected abstract Object |
RemoteMBeanScheduler.invoke(String operationName,
Object[] params,
String[] signature)
Invoke the given operation on the remote Scheduler MBean. |
boolean |
RemoteScheduler.isInStandbyMode()
Calls the equivalent method on the 'proxied' QuartzScheduler. |
boolean |
RemoteMBeanScheduler.isInStandbyMode()
Calls the equivalent method on the 'proxied' QuartzScheduler. |
boolean |
RemoteScheduler.isShutdown()
Calls the equivalent method on the 'proxied' QuartzScheduler. |
boolean |
RemoteMBeanScheduler.isShutdown()
Calls the equivalent method on the 'proxied' QuartzScheduler. |
boolean |
RemoteScheduler.isStarted()
Whether the scheduler has been started. |
boolean |
RemoteMBeanScheduler.isStarted()
Whether the scheduler has been started. |
void |
RemoteScheduler.pauseAll()
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
StdScheduler.pauseAll()
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
RemoteMBeanScheduler.pauseAll()
Calls the equivalent method on the 'proxied' QuartzScheduler,
passing the SchedulingContext associated with this
instance. |
void |
RemoteScheduler.pauseJob(JobKey jobKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
StdScheduler.pauseJob(JobKey jobKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
RemoteMBeanScheduler.pauseJob(JobKey jobKey)
Calls the equivalent method on the 'proxied' QuartzScheduler,
passing the SchedulingContext associated with this
instance. |
void |
RemoteScheduler.pauseJobs(GroupMatcher<JobKey> matcher)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
StdScheduler.pauseJobs(GroupMatcher<JobKey> matcher)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
RemoteMBeanScheduler.pauseJobs(GroupMatcher<JobKey> matcher)
Calls the equivalent method on the 'proxied' QuartzScheduler,
passing the SchedulingContext associated with this
instance. |
void |
RemoteScheduler.pauseTrigger(TriggerKey triggerKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
StdScheduler.pauseTrigger(TriggerKey triggerKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
RemoteMBeanScheduler.pauseTrigger(TriggerKey triggerKey)
Calls the equivalent method on the 'proxied' QuartzScheduler,
passing the SchedulingContext associated with this
instance. |
void |
RemoteScheduler.pauseTriggers(GroupMatcher<TriggerKey> matcher)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
StdScheduler.pauseTriggers(GroupMatcher<TriggerKey> matcher)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
RemoteMBeanScheduler.pauseTriggers(GroupMatcher<TriggerKey> matcher)
Calls the equivalent method on the 'proxied' QuartzScheduler,
passing the SchedulingContext associated with this
instance. |
Date |
RemoteScheduler.rescheduleJob(TriggerKey triggerKey,
Trigger newTrigger)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
Date |
StdScheduler.rescheduleJob(TriggerKey triggerKey,
Trigger newTrigger)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
Date |
RemoteMBeanScheduler.rescheduleJob(TriggerKey triggerKey,
Trigger newTrigger)
Calls the equivalent method on the 'proxied' QuartzScheduler,
passing the SchedulingContext associated with this
instance. |
void |
RemoteScheduler.resumeAll()
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
StdScheduler.resumeAll()
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
RemoteMBeanScheduler.resumeAll()
Calls the equivalent method on the 'proxied' QuartzScheduler,
passing the SchedulingContext associated with this
instance. |
void |
RemoteScheduler.resumeJob(JobKey jobKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
StdScheduler.resumeJob(JobKey jobKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
RemoteMBeanScheduler.resumeJob(JobKey jobKey)
Calls the equivalent method on the 'proxied' QuartzScheduler,
passing the SchedulingContext associated with this
instance. |
void |
RemoteScheduler.resumeJobs(GroupMatcher<JobKey> matcher)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
StdScheduler.resumeJobs(GroupMatcher<JobKey> matcher)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
RemoteMBeanScheduler.resumeJobs(GroupMatcher<JobKey> matcher)
Calls the equivalent method on the 'proxied' QuartzScheduler,
passing the SchedulingContext associated with this
instance. |
void |
RemoteScheduler.resumeTrigger(TriggerKey triggerKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
StdScheduler.resumeTrigger(TriggerKey triggerKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
RemoteMBeanScheduler.resumeTrigger(TriggerKey triggerKey)
Calls the equivalent method on the 'proxied' QuartzScheduler,
passing the SchedulingContext associated with this
instance. |
void |
RemoteScheduler.resumeTriggers(GroupMatcher<TriggerKey> matcher)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
StdScheduler.resumeTriggers(GroupMatcher<TriggerKey> matcher)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
RemoteMBeanScheduler.resumeTriggers(GroupMatcher<TriggerKey> matcher)
Calls the equivalent method on the 'proxied' QuartzScheduler,
passing the SchedulingContext associated with this
instance. |
Date |
RemoteScheduler.scheduleJob(JobDetail jobDetail,
Trigger trigger)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
Date |
StdScheduler.scheduleJob(JobDetail jobDetail,
Trigger trigger)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
Date |
RemoteMBeanScheduler.scheduleJob(JobDetail jobDetail,
Trigger trigger)
Calls the equivalent method on the 'proxied' QuartzScheduler,
passing the SchedulingContext associated with this
instance. |
Date |
RemoteScheduler.scheduleJob(Trigger trigger)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
Date |
StdScheduler.scheduleJob(Trigger trigger)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
Date |
RemoteMBeanScheduler.scheduleJob(Trigger trigger)
Calls the equivalent method on the 'proxied' QuartzScheduler,
passing the SchedulingContext associated with this
instance. |
void |
RemoteScheduler.scheduleJobs(Map<JobDetail,List<Trigger>> triggersAndJobs,
boolean replace)
|
void |
StdScheduler.scheduleJobs(Map<JobDetail,List<Trigger>> triggersAndJobs,
boolean replace)
|
void |
RemoteMBeanScheduler.scheduleJobs(Map<JobDetail,List<Trigger>> triggersAndJobs,
boolean replace)
|
void |
RemoteScheduler.setJobFactory(org.quartz.spi.JobFactory factory)
|
void |
StdScheduler.setJobFactory(org.quartz.spi.JobFactory factory)
|
void |
RemoteMBeanScheduler.setJobFactory(org.quartz.spi.JobFactory factory)
|
void |
RemoteMBeanScheduler.setSchedulerObjectName(ObjectName schedulerObjectName)
Set the name under which the Scheduler MBean is registered on the remote MBean server. |
void |
RemoteMBeanScheduler.setSchedulerObjectName(String schedulerObjectName)
Set the name under which the Scheduler MBean is registered on the remote MBean server. |
void |
RemoteScheduler.shutdown()
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
RemoteMBeanScheduler.shutdown()
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
RemoteScheduler.shutdown(boolean waitForJobsToComplete)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
RemoteMBeanScheduler.shutdown(boolean waitForJobsToComplete)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
RemoteScheduler.standby()
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
RemoteMBeanScheduler.standby()
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
RemoteScheduler.start()
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
StdScheduler.start()
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
RemoteMBeanScheduler.start()
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
RemoteScheduler.startDelayed(int seconds)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
StdScheduler.startDelayed(int seconds)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
RemoteMBeanScheduler.startDelayed(int seconds)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
RemoteScheduler.triggerJob(JobKey jobKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
StdScheduler.triggerJob(JobKey jobKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
RemoteMBeanScheduler.triggerJob(JobKey jobKey)
Calls the equivalent method on the 'proxied' QuartzScheduler,
passing the SchedulingContext associated with this
instance. |
void |
RemoteScheduler.triggerJob(JobKey jobKey,
JobDataMap data)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
StdScheduler.triggerJob(JobKey jobKey,
JobDataMap data)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
void |
RemoteMBeanScheduler.triggerJob(JobKey jobKey,
JobDataMap data)
Calls the equivalent method on the 'proxied' QuartzScheduler,
passing the SchedulingContext associated with this
instance. |
boolean |
RemoteScheduler.unscheduleJob(TriggerKey triggerKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
boolean |
StdScheduler.unscheduleJob(TriggerKey triggerKey)
Calls the equivalent method on the 'proxied' QuartzScheduler. |
boolean |
RemoteMBeanScheduler.unscheduleJob(TriggerKey triggerKey)
Calls the equivalent method on the 'proxied' QuartzScheduler,
passing the SchedulingContext associated with this
instance. |
boolean |
RemoteScheduler.unscheduleJobs(List<TriggerKey> triggerKeys)
|
boolean |
StdScheduler.unscheduleJobs(List<TriggerKey> triggerKeys)
|
boolean |
RemoteMBeanScheduler.unscheduleJobs(List<TriggerKey> triggerKeys)
|
| Constructors in org.quartz.impl that throw SchedulerException | |
|---|---|
StdSchedulerFactory(Properties props)
Create a StdSchedulerFactory that has been initialized via |
|
StdSchedulerFactory(String fileName)
Create a StdSchedulerFactory that has been initialized via |
|
| Uses of SchedulerException in org.quartz.impl.jdbcjobstore |
|---|
| Subclasses of SchedulerException in org.quartz.impl.jdbcjobstore | |
|---|---|
class |
LockException
Exception class for when there is a failure obtaining or releasing a resource lock. |
class |
NoSuchDelegateException
Exception class for when a driver delegate cannot be found for a given configuration, or lack thereof. |
| Methods in org.quartz.impl.jdbcjobstore that throw SchedulerException | |
|---|---|
void |
JobStoreSupport.schedulerStarted()
|
| Uses of SchedulerException in org.quartz.impl.triggers |
|---|
| Methods in org.quartz.impl.triggers that throw SchedulerException | |
|---|---|
void |
AbstractTrigger.validate()
Validates whether the properties of the JobDetail are
valid for submission into a Scheduler. |
void |
CalendarIntervalTriggerImpl.validate()
Validates whether the properties of the JobDetail are
valid for submission into a Scheduler. |
void |
SimpleTriggerImpl.validate()
Validates whether the properties of the JobDetail are
valid for submission into a Scheduler. |
| Uses of SchedulerException in org.quartz.jobs.ee.jms |
|---|
| Subclasses of SchedulerException in org.quartz.jobs.ee.jms | |
|---|---|
class |
JmsJobException
The JmsJobException is used to indicate an error during sending of a javax.jms.Messaage. |
| Uses of SchedulerException in org.quartz.listeners |
|---|
| Methods in org.quartz.listeners with parameters of type SchedulerException | |
|---|---|
void |
SchedulerListenerSupport.schedulerError(String msg,
SchedulerException cause)
|
void |
BroadcastSchedulerListener.schedulerError(String msg,
SchedulerException cause)
|
| Uses of SchedulerException in org.quartz.locality |
|---|
| Subclasses of SchedulerException in org.quartz.locality | |
|---|---|
class |
LocalityException
Exception thrown when some Constraint cannot be handled |
| Methods in org.quartz.locality that throw SchedulerException | |
|---|---|
void |
DelegatingLocalityTrigger.validate()
|
| Uses of SchedulerException in org.quartz.plugins |
|---|
| Methods in org.quartz.plugins that throw SchedulerException | |
|---|---|
void |
SchedulerPluginWithUserTransactionSupport.initialize(String name,
Scheduler scheduler)
|
| Uses of SchedulerException in org.quartz.plugins.history |
|---|
| Methods in org.quartz.plugins.history that throw SchedulerException | |
|---|---|
void |
LoggingJobHistoryPlugin.initialize(String name,
Scheduler scheduler)
Called during creation of the Scheduler in order to give
the SchedulerPlugin a chance to initialize. |
void |
LoggingTriggerHistoryPlugin.initialize(String name,
Scheduler scheduler)
Called during creation of the Scheduler in order to give
the SchedulerPlugin a chance to initialize. |
| Uses of SchedulerException in org.quartz.plugins.management |
|---|
| Methods in org.quartz.plugins.management that throw SchedulerException | |
|---|---|
void |
ShutdownHookPlugin.initialize(String name,
Scheduler scheduler)
Called during creation of the Scheduler in order to give
the SchedulerPlugin a chance to initialize. |
| Uses of SchedulerException in org.quartz.plugins.xml |
|---|
| Methods in org.quartz.plugins.xml that throw SchedulerException | |
|---|---|
void |
XMLSchedulingDataProcessorPlugin.initialize(String name,
Scheduler scheduler)
Called during creation of the Scheduler in order to give
the SchedulerPlugin a chance to initialize. |
| Uses of SchedulerException in org.quartz.simpl |
|---|
| Methods in org.quartz.simpl that throw SchedulerException | |
|---|---|
String |
SystemPropertyInstanceIdGenerator.generateInstanceId()
Returns the cluster wide value for this scheduler instance's id, based on a system property |
String |
HostnameInstanceIdGenerator.generateInstanceId()
|
String |
SimpleInstanceIdGenerator.generateInstanceId()
|
Job |
PropertySettingJobFactory.newJob(org.quartz.spi.TriggerFiredBundle bundle,
Scheduler scheduler)
|
Job |
SimpleJobFactory.newJob(org.quartz.spi.TriggerFiredBundle bundle,
Scheduler Scheduler)
|
void |
RAMJobStore.schedulerStarted()
|
protected void |
PropertySettingJobFactory.setBeanProps(Object obj,
JobDataMap data)
|
| Uses of SchedulerException in org.quartz.utils |
|---|
| Constructors in org.quartz.utils that throw SchedulerException | |
|---|---|
PoolingConnectionProvider(Properties config)
Create a connection pool using the given properties. |
|
PoolingConnectionProvider(String dbDriver,
String dbURL,
String dbUser,
String dbPassword,
int maxConnections,
String dbValidationQuery)
|
|
| Uses of SchedulerException in org.quartz.xml |
|---|
| Methods in org.quartz.xml that throw SchedulerException | |
|---|---|
protected void |
XMLSchedulingDataProcessor.executePreProcessCommands(Scheduler scheduler)
|
protected void |
XMLSchedulingDataProcessor.processFile(String fileName,
String systemId)
Process the xmlfile named fileName with the given system
ID. |
void |
XMLSchedulingDataProcessor.processFileAndScheduleJobs(Scheduler sched,
boolean overWriteExistingJobs)
Process the xml file in the default location, and schedule all of the jobs defined within it. |
void |
XMLSchedulingDataProcessor.processStreamAndScheduleJobs(InputStream stream,
String systemId,
Scheduler sched)
Process the xmlfile named fileName with the given system
ID. |
protected void |
XMLSchedulingDataProcessor.scheduleJobs(Scheduler sched)
Schedules the given sets of jobs and triggers. |
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
Copyright 2001-2011, Terracotta, Inc.