Dutch PHP Conference 2025 - Call For Papers

The Fiber class

(PHP 8 >= 8.1.0)

Вступ

Fibers represent full-stack, interruptible functions. Fibers may be suspended from anywhere in the call-stack, pausing execution within the fiber until the fiber is resumed at a later time.

Короткий огляд класу

final class Fiber {
/* Методи */
public __construct(callable $callback)
public start(mixed ...$args): mixed
public resume(mixed $value = null): mixed
public throw(Throwable $exception): mixed
public getReturn(): mixed
public isStarted(): bool
public isSuspended(): bool
public isRunning(): bool
public isTerminated(): bool
public static suspend(mixed $value = null): mixed
public static getCurrent(): ?Fiber
}

Прогляньте також

Fibers overview

Зміст

add a note

User Contributed Notes

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