task
interface task
Cron task interface
Methods
string
get_name()
Returns the name of the task.
null
run()
Runs this cron task.
bool
is_runnable()
Returns whether this cron task can run, given current board configuration.
bool
should_run()
Returns whether this cron task should run now, because enough time has passed since it was last run.
Details
at line 26
string
get_name()
Returns the name of the task.
at line 33
null
run()
Runs this cron task.
at line 43
bool
is_runnable()
Returns whether this cron task can run, given current board configuration.
For example, a cron task that prunes forums can only run when forum pruning is enabled.
at line 51
bool
should_run()
Returns whether this cron task should run now, because enough time has passed since it was last run.