PHP 8.6.0 Beta 1 is available for testing

Swoole\Event::dispatch

(No version information available, might only be in Git)

Swoole\Event::dispatchPerform a single event loop iteration

Description

public static function Swoole\Event::dispatch(): void

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.

Valeurs de retour

No return value.

Exemples

Exemple #1 Manual event loop control

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

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top