WC_Background_Updater::handle_cron_healthcheck()

Handle cron healthcheck


Description Description

Restart the background process if not already running and data exists in the queue.


Source Source

File: includes/class-wc-background-updater.php

	public function handle_cron_healthcheck() {
		if ( $this->is_process_running() ) {
			// Background process already running.
			return;
		}

		if ( $this->is_queue_empty() ) {
			// No data to process.
			$this->clear_scheduled_event();
			return;
		}

		$this->handle();
	}

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.