Expand my Community achievements bar.

SOLVED

APIs to retrieve the scheduled jobs

Avatar

Level 1

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!!

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

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

View solution in original post

2 Replies

Avatar

Correct answer by
Community Advisor

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

Avatar

Administrator
It is always a pleasure to read your answers. Keep helping others here.


Kautuk Sahni