ActionScheduler_Abstract_QueueRunner::__construct()publicWC 1.0

ActionScheduler_Abstract_QueueRunner constructor.

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

Хуков нет.

Возвращает

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

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

$ActionScheduler_Abstract_QueueRunner = new ActionScheduler_Abstract_QueueRunner();
$ActionScheduler_Abstract_QueueRunner->__construct( $store, $monitor, $cleaner );
$store(ActionScheduler_Store)
-
По умолчанию: null
$monitor(ActionScheduler_FatalErrorMonitor)
-
По умолчанию: null
$cleaner(ActionScheduler_QueueCleaner)
-
По умолчанию: null

Код ActionScheduler_Abstract_QueueRunner::__construct() WC 8.7.0

public function __construct( ActionScheduler_Store $store = null, ActionScheduler_FatalErrorMonitor $monitor = null, ActionScheduler_QueueCleaner $cleaner = null ) {

	$this->created_time = microtime( true );

	$this->store   = $store ? $store : ActionScheduler_Store::instance();
	$this->monitor = $monitor ? $monitor : new ActionScheduler_FatalErrorMonitor( $this->store );
	$this->cleaner = $cleaner ? $cleaner : new ActionScheduler_QueueCleaner( $this->store );
}