Search This Blog

Showing posts with label Apex Class. Show all posts
Showing posts with label Apex Class. Show all posts

Monday, 23 September 2019

Scheduled Apex Class After nth Minute

Below is apex code for scheduled your schedulable class after nth minute, just write the below code in developer console and execute it.

 Integer intMinute = 1;
ScheduleClass objScheduleClass = new ScheduleClass();
String strCronExpression = '0 '+String.ValueOf(DateTime.Now().AddMinutes(intMinute).Minute())+' * * * ?';
String strJobId = system.schedule('Test Job', strCronExpression, objScheduleClass);

**ScheduleClass = Apex class name which you want to schedule

THANK YOU