WP_Background_Process::handle_cron_healthcheck()
Handle cron healthcheck
Restart the background process if not already running and data exists in the queue.
Method of the class: WP_Background_Process{}
No Hooks.
Return
null
. Nothing (null).
Usage
$WP_Background_Process = new WP_Background_Process(); $WP_Background_Process->handle_cron_healthcheck();
WP_Background_Process::handle_cron_healthcheck() WP Background Process::handle cron healthcheck code WC 9.4.2
public function handle_cron_healthcheck() { if ( $this->is_process_running() ) { // Background process already running. exit; } if ( $this->is_queue_empty() ) { // No data to process. $this->clear_scheduled_event(); exit; } $this->handle(); exit; }