Start event loop
Starts the event loop. Place this at the end of your PHP program.
No return value.
Example #1 Swoole\Event::wait example
<?php Swoole\Timer::tick(1000, function () { echo "hello\n"; }); Swoole\Event::wait(); ?>