Uses of Class
org.quartz.exceptions.SchedulerException
Packages that use SchedulerException
Package
Description
-
Uses of SchedulerException in org.knowm.sundial.plugins
Methods in org.knowm.sundial.plugins that throw SchedulerExceptionModifier and TypeMethodDescriptionvoidAnnotationJobTriggerPlugin.initialize(String name, Scheduler scheduler) Called during creation of theSchedulerin order to give theSchedulerPlugina chance to initialize. -
Uses of SchedulerException in org.quartz
Methods in org.quartz with parameters of type SchedulerExceptionModifier and TypeMethodDescriptionvoidQuartzScheduler.notifySchedulerListenersError(String msg, SchedulerException se) Methods in org.quartz that throw SchedulerExceptionModifier and TypeMethodDescriptionvoidAdd the givenJobto the Scheduler - with no associatedTrigger.voidQuartzScheduler.getJobDetail(String jobKey) Get thefor theJobDetailJobinstance with the given name and group.QuartzScheduler.getJobKeys()Get the names of all thein the matching groups.JobsQuartzScheduler.getTrigger(String triggerKey) Get theinstance with the given name and group.TriggerQuartzScheduler.getTriggersOfJob(String jobKey) voidQuartzScheduler.initialize()voidQuartzScheduler.notifyJobListenersToBeExecuted(JobExecutionContext jec) voidQuartzScheduler.notifyJobListenersWasExecuted(JobExecutionContext jec, JobExecutionException je) voidQuartzScheduler.notifyJobListenersWasVetoed(JobExecutionContext jec) voidQuartzScheduler.notifyTriggerListenersComplete(JobExecutionContext jec, Trigger.CompletedExecutionInstruction instCode) booleanQuartzScheduler.notifyTriggerListenersFired(JobExecutionContext jec) voidQuartzScheduler.notifyTriggerListenersMisfired(Trigger trigger) QuartzScheduler.rescheduleJob(String triggerName, OperableTrigger newTrigger) QuartzScheduler.scheduleJob(JobDetail jobDetail, OperableTrigger trigger) QuartzScheduler.scheduleJob(OperableTrigger trigger) voidQuartzScheduler.setJobFactory(JobFactory factory) voidQuartzScheduler.start()Starts theQuartzScheduler's threads that fire.TriggersvoidQuartzScheduler.startDelayed(int seconds) voidQuartzScheduler.triggerJob(String jobKey, JobDataMap data) Trigger the identified(execute it now) - with a non-volatile trigger.JobvoidQuartzScheduler.unscheduleJob(String triggerKey) Constructors in org.quartz that throw SchedulerExceptionModifierConstructorDescriptionQuartzScheduler(QuartzSchedulerResources quartzSchedulerResources) Create aQuartzSchedulerwith the given configuration properties. -
Uses of SchedulerException in org.quartz.core
Methods in org.quartz.core that throw SchedulerExceptionModifier and TypeMethodDescriptionvoidAdd the givenJobto the Scheduler - with no associatedTrigger.JobRunShellFactory.createJobRunShell(TriggerFiredBundle bundle) Called by theto obtain instances ofQuartzSchedulerThread.JobRunShellStandardJobRunShellFactory.createJobRunShell(TriggerFiredBundle bundle) Called by theQuartzSchedulerThreadto obtain instances of.JobRunShellvoidDelete the identifiedJobfrom the Scheduler - and any associatedTriggers.Scheduler.getCurrentlyExecutingJobs()Return a list ofJobExecutionContextobjects that represent all currently executing Jobs in this Scheduler instance.Scheduler.getJobDetail(String jobKey) Get thefor theJobDetailJobinstance with the given key.Scheduler.getJobKeys()Get the keys of all thein the matching groups.JobDetailsScheduler.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 theinstance with the given key.TriggerScheduler.getTriggersOfJob(String jobKey) booleanScheduler.isInStandbyMode()Reports whether theScheduleris in stand-by mode.booleanScheduler.isShutdown()Reports whether theSchedulerhas been shutdown.booleanScheduler.isStarted()Whether the scheduler has been started.Scheduler.rescheduleJob(String triggerName, OperableTrigger newTrigger) Remove (delete) thewith 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.OperableTriggerScheduler.scheduleJob(JobDetail jobDetail, OperableTrigger trigger) Add the givento the Scheduler, and associate the givenJobDetailwith it.OperableTriggerScheduler.scheduleJob(OperableTrigger trigger) voidJobStore.schedulerStarted()Called by the QuartzScheduler to inform theJobStorethat the scheduler has started.voidRAMJobStore.schedulerStarted()voidScheduler.setJobFactory(JobFactory factory) Set theJobFactorythat will be responsible for producing instances ofJobclasses.voidScheduler.shutdown()Halts theScheduler's firing of, and cleans up all resources associated with the Scheduler.TriggersvoidScheduler.standby()Temporarily halts theScheduler's firing of.TriggersvoidScheduler.start()Starts theScheduler's threads that fire.TriggersvoidScheduler.startDelayed(int seconds) Calls {#start()} after the indicated number of seconds.voidScheduler.triggerJob(String jobKey, JobDataMap data) Trigger the identified(execute it now).JobDetailvoidScheduler.unscheduleJob(String triggerKey) Remove the indicatedfrom the scheduler.Trigger -
Uses of SchedulerException in org.quartz.exceptions
Subclasses of SchedulerException in org.quartz.exceptionsModifier and TypeClassDescriptionclassAn exception that can be thrown by ato indicate to the QuartzJobthat an error occurred while executing, and whether or not theSchedulerJobrequests to be re-fired immediately (using the same, or whether it wants to be unscheduled.JobExecutionContextclassAn exception that is thrown to indicate that there has been a failure in the scheduler's underlying persistence mechanism.classAn exception that is thrown to indicate that an attempt to store a new object (i.e.classAn 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
Methods in org.quartz.jobs that throw SchedulerExceptionModifier and TypeMethodDescriptionJobFactory.newJob(TriggerFiredBundle bundle, Scheduler scheduler) Called by the scheduler at the time of the trigger firing, in order to produce aJobinstance on which to call execute.SimpleJobFactory.newJob(TriggerFiredBundle bundle, Scheduler Scheduler) -
Uses of SchedulerException in org.quartz.listeners
Methods in org.quartz.listeners with parameters of type SchedulerExceptionModifier and TypeMethodDescriptionvoidSchedulerListener.schedulerError(String msg, SchedulerException cause) Called by thewhen a serious error has occurred within the scheduler - such as repeated failures in theSchedulerJobStore, or the inability to instantiate aJobinstance when itsTriggerhas fired.voidSchedulerListenerSupport.schedulerError(String msg, SchedulerException cause) -
Uses of SchedulerException in org.quartz.plugins
Methods in org.quartz.plugins that throw SchedulerExceptionModifier and TypeMethodDescriptionvoidSchedulerPlugin.initialize(String name, Scheduler scheduler) Called during creation of theSchedulerin order to give theSchedulerPlugina chance to initialize. -
Uses of SchedulerException in org.quartz.plugins.management
Methods in org.quartz.plugins.management that throw SchedulerExceptionModifier and TypeMethodDescriptionvoidShutdownHookPlugin.initialize(String name, Scheduler scheduler) Called during creation of theSchedulerin order to give theSchedulerPlugina chance to initialize. -
Uses of SchedulerException in org.quartz.plugins.xml
Methods in org.quartz.plugins.xml that throw SchedulerExceptionModifier and TypeMethodDescriptionvoidXMLSchedulingDataProcessorPlugin.initialize(String name, Scheduler scheduler) Called during creation of theSchedulerin order to give theSchedulerPlugina chance to initialize.voidXMLSchedulingDataProcessor.scheduleJobs(Scheduler sched) Schedules the given sets of jobs and triggers. -
Uses of SchedulerException in org.quartz.triggers
Methods in org.quartz.triggers that throw SchedulerExceptionModifier and TypeMethodDescriptionvoidAbstractTrigger.validate()voidOperableTrigger.validate()Validates whether the properties of theJobDetailare valid for submission into aScheduler.voidSimpleTriggerImpl.validate()Validates whether the properties of theJobDetailare valid for submission into aScheduler.