Stop / close the scheduler
Hi,
Please help me how to stop the scheduler in AEM6.
Thanks
Hi,
Please help me how to stop the scheduler in AEM6.
Thanks
Hi
Please refer to the article mentioned below to help you out.
Link:- http://hashimkhan.in/aem-adobecq5-code-templates/scheduler/
//
Option 1:- We can have periodic Scheduling by using longValue = x, the job will execute every X seconds, so if you want to stop for some while, you can specify this x accordingly.
Option 2: API based,
To execute the job as defined above at 10:15am every Monday, Tuesday, Wednesday, Thursday and Friday, you can use the addJob() method with the following parameters:
String schedulingExpression = "0 15 10 ? * MON-FRI";this.scheduler.addJob("myJob", job, null, schedulingExpression, true);
Option 3:
To execute the job as defined above every 3 minutes (180 seconds), you can use the addPeriodicJob() method with the following parameters:
long period = 3*60; //the period is expressed in secondsthis.scheduler.addPeriodicJob("myJob", job, null, period, true);
Option 4:
To execute the job as defined above at a specific date (on January 10th 2020), you can use the fireJobAt() method with the following parameters:
SimpleDateFormat formatter = new SimpleDateFormat("yyyy/MM/dd");String date = "2020/01/10";java.util.Date fireDate = formatter.parse(date);this.scheduler.fireJobAt("myJob", job, null, fireDate);
And you can otherwise stop the service (deactivate it).
Some reference articles are :- https://helpx.adobe.com/experience-manager/using/aem-first-components1.html , https://sling.apache.org/documentation/bundles/scheduler-service-commons-scheduler.html
I hope this would help you.
Thanks and Regards
Kautuk Sahni
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.