WC_Background_Process::batch_limit_exceededprotectedWC 1.0

See if the batch limit has been exceeded.

Method of the class: WC_Background_Process{}

No Hooks.

Returns

true|false.

Usage

// protected - for code of main (parent) or child class
$result = $this->batch_limit_exceeded();

WC_Background_Process::batch_limit_exceeded() code WC 9.8.5

protected function batch_limit_exceeded() {
	return $this->time_exceeded() || $this->memory_exceeded();
}