Swoole\Event::defer

Execute a function at the start of the next event loop

Description

public static void Swoole\Event::defer(callable $callback_function)

Schedules a function to run at the start of the next event loop iteration.

Parameters

callback_function
Callback function to execute (no parameters allowed; use use for closure variables).

Return Values

No return value.

Examples

Example #1 Swoole\Event::defer example

<?php
Swoole\Event::defer(function(){
    echo "After EventLoop\n";
});
?>