• 1Installation
  • 2Preliminary Knowledge
  • 3Hello World Job
  • 4Cron Expression Jobs
  • 5Repeating Jobs
  • 6Job Management

Job.apex

  • Docs
  • Tutorials
Getting started with Job.apex

Repeating Jobs

Job.apex provides another type of jobs that can repeat themselves at given interval.

new Job('test', new CustomJob())
    .startNow()
    .everyMinutes(30)
    .repeatForever()
    .schedule();
// Schedule a job that first runs 30 minutes after now, and then repeats itself forever
Done