TriggeredJobScheduler
Background scheduler for executing CRON triggered jobs.
Runs in a separate thread and checks every 60 seconds for jobs that need to be executed (where next_run_at <= now).
Functions
force_check @classmethod
Force an immediate check for jobs to run. Useful for testing or manual triggers.
init @classmethod
Initialize and start the scheduler thread. Should be called at server startup.
is_running @classmethod
Check if the scheduler is running
Return type :
bool stop @classmethod
Stop the scheduler thread.