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

Descrição

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.

Valor Retornado

No return value.

Exemplos

Exemplo #1 Manual event loop control

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

adicionar nota

Notas de Usuários

Não há notas de usuários para esta página.
To Top