WC_Background_Emailer::dispatch_queue()publicWC 1.0

Save and run queue.

Метод класса: WC_Background_Emailer{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$WC_Background_Emailer = new WC_Background_Emailer();
$WC_Background_Emailer->dispatch_queue();

Код WC_Background_Emailer::dispatch_queue() WC 8.7.0

public function dispatch_queue() {
	if ( ! empty( $this->data ) ) {
		$this->close_http_connection();
		$this->save()->dispatch();
	}
}