Uses of Class
org.knowm.sundial.exceptions.SundialSchedulerException
Packages that use SundialSchedulerException
-
Uses of SundialSchedulerException in org.knowm.sundial
Methods in org.knowm.sundial that throw SundialSchedulerExceptionModifier and TypeMethodDescriptionstatic voidSundialJobScheduler.addCronTrigger(String triggerName, String jobName, String cronExpression) static voidSundialJobScheduler.addCronTrigger(String triggerName, String jobName, String cronExpression, Date startTime, Date endTime) static voidAdds a Job to the scheduler.static voidSundialJobScheduler.addJob(String jobName, Class<? extends Job> jobClass, Map<String, Object> params, boolean isConcurrencyAllowed) Adds a Job to the scheduler.static voidAdds a Job to the scheduler.static voidSundialJobScheduler.addJob(String jobName, String jobClassName, Map<String, Object> params, boolean isConcurrencyAllowed) Adds a Job to the scheduler.static voidSundialJobScheduler.addSimpleTrigger(String triggerName, String jobName, int repeatCount, long repeatInterval) static voidSundialJobScheduler.addSimpleTrigger(String triggerName, String jobName, int repeatCount, long repeatInterval, Date startTime, Date endTime) static SchedulerSundialJobScheduler.createScheduler(int threadPoolSize, String annotatedJobsPackageName) Creates the Sundial Schedulerstatic SchedulerSundialJobScheduler.createScheduler(SchedulerFactory schedulerFactory) Creates the Sundial SchedulerSundialJobScheduler.getAllJobNames()Generates an alphabetically sorted List of all Job names in the DEFAULT job groupSundialJobScheduler.getAllJobsAndTriggers()Generates a Map of all Job names with corresponding Triggersstatic booleanSundialJobScheduler.isJobRunning(String jobName) static voidRemoves a Job matching the given Job Namestatic voidSundialJobScheduler.removeTrigger(String triggerName) Removes a Trigger matching the the given Trigger Namestatic voidSundialJobScheduler.shutdown()Halts the Scheduler's firing of Triggers, and cleans up all resources associated with the Scheduler.static voidStarts a Job matching the given Job Namestatic voidStarts a Job matching the the given Job Name found in jobs.xml or jobs manually added.static voidSundialJobScheduler.startScheduler()Starts the Sundial Schedulerstatic voidSundialJobScheduler.startScheduler(int threadPoolSize) Starts the Sundial Schedulerstatic voidSundialJobScheduler.startScheduler(int threadPoolSize, String annotatedJobsPackageName) Starts the Sundial Schedulerstatic voidSundialJobScheduler.startScheduler(String annotatedJobsPackageName) Starts the Sundial Schedulerstatic voidTriggers a Job interrupt on all Jobs matching the given Job Name.static voidTriggers a Job interrupt on all Jobs matching the given Job Name, key and (String) value.