action_scheduler_allow_async_request_runner filter-hookWC 1.0

Usage

add_filter( 'action_scheduler_allow_async_request_runner', 'wp_kama_action_scheduler_allow_async_request_runner_filter' );

/**
 * Function for `action_scheduler_allow_async_request_runner` filter-hook.
 * 
 * @param  $allow 
 *
 * @return 
 */
function wp_kama_action_scheduler_allow_async_request_runner_filter( $allow ){

	// filter...
	return $allow;
}
$allow
-

Where the hook is called

ActionScheduler_AsyncRequest_QueueRunner::allow()
action_scheduler_allow_async_request_runner
woocommerce/packages/action-scheduler/classes/ActionScheduler_AsyncRequest_QueueRunner.php 88
return apply_filters( 'action_scheduler_allow_async_request_runner', $allow );

Where the hook is used in WooCommerce

Usage not found.