ActionScheduler_AsyncRequest_QueueRunner::allow
Only allow async requests when needed.
Also allow 3rd party code to disable running actions via async requests.
Method of the class: ActionScheduler_AsyncRequest_QueueRunner{}
Hooks from the method
Returns
null. Nothing (null).
Usage
// protected - for code of main (parent) or child class $result = $this->allow();
ActionScheduler_AsyncRequest_QueueRunner::allow() ActionScheduler AsyncRequest QueueRunner::allow code WC 10.8.1
protected function allow() {
if ( ! has_action( 'action_scheduler_run_queue' ) || ActionScheduler::runner()->has_maximum_concurrent_batches() || ! $this->store->has_pending_actions_due() ) {
$allow = false;
} else {
$allow = true;
}
return apply_filters( 'action_scheduler_allow_async_request_runner', $allow );
}