Swoole\Event::dispatch

Perform a single event loop iteration

説明

public static void Swoole\Event::dispatch()

The purpose of this function is to maintain compatibility with some frameworks. When a framework internally manages its own reactor loop, using Event::wait would allow Swoole's underlying layer to retain control, preventing the framework from taking over execution.

戻り値

No return value.

例1 Manual event loop control

<?php
while (true) {
    Swoole\Event::dispatch();
}