Hello All,
We need to provide an option from UI for the business to manage the scheduled jobs.
Users should be able to see the scheduled jobs, reschedule, and cancel the jobs.
I am using the Scheduler class to schedule the jobs.
ScheduleOptions options = scheduler.EXPR("0 55 16 * * ?");
options.canRunConcurrently(false);
options.name("Test Job");
final Runnable job3 = new Runnable() {
@Override
public void run() {
LOGGER.debug("Executing Test Job");
pullPR();
}
};
this.scheduler.schedule(job3,options);
I am looking for APIs to retrieve the scheduled jobs and manage them. Any help would be much appreciated.
Thank you!!
Solved! Go to Solution.
Views
Replies
Total Likes
Hi Kasiv,
The API is not exposed, so we have to use workaround to get these details. In ideal universe we would always know the names of our jobs.
One Options is to:
Write code to get the list of scheduled jobs from the output of the Apache Sling Scheduler Configuration Printer parse it and get a list of jobs.
Another Option is to:
Create your CustomerSchedulerWrapper where you would save all the jobs you created in a data structure that fits your needs and manage jobs appropriately.
Via both options you can use the standard API's available in Scheduler to start/stop/reschedule jobs.
Regards,
Peter
Hi Kasiv,
The API is not exposed, so we have to use workaround to get these details. In ideal universe we would always know the names of our jobs.
One Options is to:
Write code to get the list of scheduled jobs from the output of the Apache Sling Scheduler Configuration Printer parse it and get a list of jobs.
Another Option is to:
Create your CustomerSchedulerWrapper where you would save all the jobs you created in a data structure that fits your needs and manage jobs appropriately.
Via both options you can use the standard API's available in Scheduler to start/stop/reschedule jobs.
Regards,
Peter
Views
Replies
Total Likes