-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Quartz API Operations
Zemian Deng edited this page Mar 1, 2019
·
12 revisions
Quartz is a Java library, and you may use it to perform job data management and control the scheduler. The central API to the scheduler is the org.quartz.Scheduler
interface, and you may get an instance with org.quartz.impl.StdSchedulerFactory.getDefaultScheduler()
.
We refer to "client" API when you use org.quartz.Scheduler
to manage job data only. Things such as adding, removing, or rescheduling a job, trigger or listeners. These operations can be done on scheduler instance without having it to be started or. Obviously you may also perform job data management while the scheduler is in running mode as well.