Uses of Class
org.quartz.exceptions.SchedulerException
Package
Description
-
Uses of SchedulerException in org.knowm.sundial.plugins
Modifier and TypeMethodDescriptionvoid
AnnotationJobTriggerPlugin.initialize
(String name, Scheduler scheduler) Called during creation of theScheduler
in order to give theSchedulerPlugin
a chance to initialize. -
Uses of SchedulerException in org.quartz
Modifier and TypeMethodDescriptionvoid
QuartzScheduler.notifySchedulerListenersError
(String msg, SchedulerException se) Modifier and TypeMethodDescriptionvoid
Add the givenJob
to the Scheduler - with no associatedTrigger
.void
QuartzScheduler.getJobDetail
(String jobKey) Get the
for theJobDetail
Job
instance with the given name and group.QuartzScheduler.getJobKeys()
Get the names of all the
in the matching groups.Job
sQuartzScheduler.getTrigger
(String triggerKey) Get the
instance with the given name and group.Trigger
QuartzScheduler.getTriggersOfJob
(String jobKey) void
QuartzScheduler.initialize()
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) QuartzScheduler.rescheduleJob
(String triggerName, OperableTrigger newTrigger) QuartzScheduler.scheduleJob
(JobDetail jobDetail, OperableTrigger trigger) QuartzScheduler.scheduleJob
(OperableTrigger trigger) void
QuartzScheduler.setJobFactory
(JobFactory factory) void
QuartzScheduler.start()
Starts theQuartzScheduler
's threads that fireTrigger
svoid
QuartzScheduler.startDelayed
(int seconds) void
QuartzScheduler.triggerJob
(String jobKey, JobDataMap data) Trigger the identified
(execute it now) - with a non-volatile trigger.Job
void
QuartzScheduler.unscheduleJob
(String triggerKey) ModifierConstructorDescriptionQuartzScheduler
(QuartzSchedulerResources quartzSchedulerResources) Create aQuartzScheduler
with the given configuration properties. -
Uses of SchedulerException in org.quartz.core
Modifier and TypeMethodDescriptionvoid
Add the givenJob
to the Scheduler - with no associatedTrigger
.JobRunShellFactory.createJobRunShell
(TriggerFiredBundle bundle) Called by the
to obtain instances ofQuartzSchedulerThread
.JobRunShell
StandardJobRunShellFactory.createJobRunShell
(TriggerFiredBundle bundle) Called by theQuartzSchedulerThread
to obtain instances ofJobRunShell
void
Delete the identifiedJob
from the Scheduler - and any associatedTrigger
s.Scheduler.getCurrentlyExecutingJobs()
Return a list ofJobExecutionContext
objects that represent all currently executing Jobs in this Scheduler instance.Scheduler.getJobDetail
(String jobKey) Get the
for theJobDetail
Job
instance with the given key.Scheduler.getJobKeys()
Get the keys of all the
in the matching groups.JobDetail
sScheduler.getListenerManager()
Get a reference to the scheduler'sListenerManager
, through which listeners may be registered.SchedulerFactory.getScheduler()
Returns a handle to the Scheduler produced by this factory.SchedulerFactory.getScheduler
(int threadPoolSize) SchedulerFactory.getScheduler
(int threadPoolSize, String packageName) Scheduler.getTrigger
(String triggerKey) Get the
instance with the given key.Trigger
Scheduler.getTriggersOfJob
(String jobKey) boolean
Scheduler.isInStandbyMode()
Reports whether theScheduler
is in stand-by mode.boolean
Scheduler.isShutdown()
Reports whether theScheduler
has been shutdown.boolean
Scheduler.isStarted()
Whether the scheduler has been started.Scheduler.rescheduleJob
(String triggerName, OperableTrigger newTrigger) Remove (delete) the
with the given key, and store the new given one - which must be associated with the same job (the new trigger must have the job name specified) - however, the new trigger need not have the same name as the old trigger.OperableTrigger
Scheduler.scheduleJob
(JobDetail jobDetail, OperableTrigger trigger) Add the given
to the Scheduler, and associate the givenJobDetail
with it.OperableTrigger
Scheduler.scheduleJob
(OperableTrigger trigger) void
JobStore.schedulerStarted()
Called by the QuartzScheduler to inform theJobStore
that the scheduler has started.void
RAMJobStore.schedulerStarted()
void
Scheduler.setJobFactory
(JobFactory factory) Set theJobFactory
that will be responsible for producing instances ofJob
classes.void
Scheduler.shutdown()
Halts theScheduler
's firing of
, and cleans up all resources associated with the Scheduler.Trigger
svoid
Scheduler.standby()
Temporarily halts theScheduler
's firing of
.Trigger
svoid
Scheduler.start()
Starts theScheduler
's threads that fire
.Trigger
svoid
Scheduler.startDelayed
(int seconds) Calls {#start()} after the indicated number of seconds.void
Scheduler.triggerJob
(String jobKey, JobDataMap data) Trigger the identified
(execute it now).JobDetail
void
Scheduler.unscheduleJob
(String triggerKey) Remove the indicated
from the scheduler.Trigger
-
Uses of SchedulerException in org.quartz.exceptions
Modifier and TypeClassDescriptionclass
An exception that can be thrown by a
to indicate to the QuartzJob
that an error occurred while executing, and whether or not theScheduler
Job
requests to be re-fired immediately (using the sameJobExecutionContext
class
An exception that is thrown to indicate that there has been a failure in the scheduler's underlying persistence mechanism.class
An exception that is thrown to indicate that an attempt to store a new object (i.e.class
An exception that is thrown to indicate that there is a misconfiguration of theSchedulerFactory
- or one of the components it configures. -
Uses of SchedulerException in org.quartz.jobs
Modifier and TypeMethodDescriptionJobFactory.newJob
(TriggerFiredBundle bundle, Scheduler scheduler) Called by the scheduler at the time of the trigger firing, in order to produce aJob
instance on which to call execute.SimpleJobFactory.newJob
(TriggerFiredBundle bundle, Scheduler Scheduler) -
Uses of SchedulerException in org.quartz.listeners
Modifier and TypeMethodDescriptionvoid
SchedulerListener.schedulerError
(String msg, SchedulerException cause) Called by the
when a serious error has occurred within the scheduler - such as repeated failures in theScheduler
JobStore
, or the inability to instantiate aJob
instance when itsTrigger
has fired.void
SchedulerListenerSupport.schedulerError
(String msg, SchedulerException cause) -
Uses of SchedulerException in org.quartz.plugins
Modifier and TypeMethodDescriptionvoid
SchedulerPlugin.initialize
(String name, Scheduler scheduler) Called during creation of theScheduler
in order to give theSchedulerPlugin
a chance to initialize. -
Uses of SchedulerException in org.quartz.plugins.management
Modifier and TypeMethodDescriptionvoid
ShutdownHookPlugin.initialize
(String name, Scheduler scheduler) Called during creation of theScheduler
in order to give theSchedulerPlugin
a chance to initialize. -
Uses of SchedulerException in org.quartz.plugins.xml
Modifier and TypeMethodDescriptionvoid
XMLSchedulingDataProcessorPlugin.initialize
(String name, Scheduler scheduler) Called during creation of theScheduler
in order to give theSchedulerPlugin
a chance to initialize.void
XMLSchedulingDataProcessor.scheduleJobs
(Scheduler sched) Schedules the given sets of jobs and triggers. -
Uses of SchedulerException in org.quartz.triggers
Modifier and TypeMethodDescriptionvoid
AbstractTrigger.validate()
void
OperableTrigger.validate()
Validates whether the properties of theJobDetail
are valid for submission into aScheduler
.void
SimpleTriggerImpl.validate()
Validates whether the properties of theJobDetail
are valid for submission into aScheduler
.