Swoole\Event::defer

Execute a function at the start of the next event loop

説明

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

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

パラメータ

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

戻り値

No return value.

例1 Swoole\Event::defer example

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