Swoole\Event::wait

Start event loop

Description

public static void Swoole\Event::wait()

Starts the event loop. Place this at the end of your PHP program.

Return Values

No return value.

Examples

Example #1 Swoole\Event::wait example

<?php
Swoole\Timer::tick(1000, function () {
    echo "hello\n";
});

Swoole\Event::wait();
?>