Execute all jobs matching the triggered cron expression
Jobs are executed sequentially. If a job fails:
Cloudflare ScheduledController
Get all registered cron expressions
Array of unique cron expressions
Get all registered jobs for a specific cron expression
Cron expression
Array of jobs for that schedule, or empty array if none
Get total number of registered jobs across all schedules
Total job count
Register a cron job
Jobs with the same schedule are grouped together and executed sequentially when the trigger fires.
CronJob instance to register
Manages cron job registration and execution
CronManager is a singleton service that:
Jobs are grouped by their cron expression, allowing multiple jobs to run on the same schedule.