WP_Background_Process::push_to_queuepublicWC 1.0

Push to queue

Method of the class: WP_Background_Process{}

No Hooks.

Returns

$this.

Usage

$WP_Background_Process = new WP_Background_Process();
$WP_Background_Process->push_to_queue( $data );
$data(mixed) (required)
Data.

WP_Background_Process::push_to_queue() code WC 10.3.3

public function push_to_queue( $data ) {
	$this->data[] = $data;

	return $this;
}