We create apex scheduler job which can be scheduled to run at specific time. If we want to run job instantly to either check the functionality or want to force start scheduled job then below code sample will help you.
Suppose you have scheduled apex class:
global class SK_JobsSchedulerHelper implements Schedulable {
global SK_JobsSchedulerHelper(){
}
global void execute(SchedulableContext sc) {
//your business logic
}
}
Now if you want to run it instantly from developer console, then use below script:
SR_JobsSchedulerHelper sch = new SR_JobsSchedulerHelper();
sch.execute(null);
Now if you want to run this job after 5 minutes, then you can use below script:
SR_JobsSchedulerHelper sch = new SR_JobsSchedulerHelper();
Datetime dt = Datetime.now().addMinutes(5);
String schCronExp = dt.format('s m H d M \'?\' yyyy');
Id schedId = System.Schedule(' scheduling this job at'+System.now().format(),schCronExp,sch);
Hope this help!!
Suppose you have scheduled apex class:
global class SK_JobsSchedulerHelper implements Schedulable {
global SK_JobsSchedulerHelper(){
}
global void execute(SchedulableContext sc) {
//your business logic
}
}
Now if you want to run it instantly from developer console, then use below script:
SR_JobsSchedulerHelper sch = new SR_JobsSchedulerHelper();
sch.execute(null);
Now if you want to run this job after 5 minutes, then you can use below script:
SR_JobsSchedulerHelper sch = new SR_JobsSchedulerHelper();
Datetime dt = Datetime.now().addMinutes(5);
String schCronExp = dt.format('s m H d M \'?\' yyyy');
Id schedId = System.Schedule(' scheduling this job at'+System.now().format(),schCronExp,sch);
Hope this help!!