action_scheduler_run_queue, Async Request

action_scheduler_run_queue, Async Request

Hook Type: action

See hook in core

Displaying hooks found in version: all-in-one-seo-pack.5.0.0.1

do_action('action_scheduler_run_queue, Async Request') is found 1 times:

  • /vendor/woocommerce/action-scheduler/classes/ActionScheduler_AsyncRequest_QueueRunner.php line 48
    	 * Run a queue, and maybe dispatch another async request to run another queue
    	 * if there are still pending actions after completing a queue in this request.
    	 */
    	protected function handle() {
    		do_action( 'action_scheduler_run_queue', 'Async Request' ); // run a queue in the same way as WP Cron, but declare the Async Request context.
    
    		$sleep_seconds = $this->get_sleep_seconds();
    
    		if ( $sleep_seconds ) {
    			sleep( $sleep_seconds );
    		}