WC_Background_Updater::is_updating()publicWC 1.0

Is the updater running?

Method of the class: WC_Background_Updater{}

No Hooks.

Return

true|false.

Usage

$WC_Background_Updater = new WC_Background_Updater();
$WC_Background_Updater->is_updating();

WC_Background_Updater::is_updating() code WC 8.7.0

public function is_updating() {
	return false === $this->is_queue_empty();
}