LonghornPHP 2026

La clase Threaded

(PECL pthreads >= 2.0.0)

Introducción

Los objetos Threaded constituyen la base de pthreads para ejecutar código de forma paralela; exponen e incluyen métodos de sincronización así como diversas interfaces útiles.

Los objetos Threaded proporcionan seguridad nativa para el desarrollador; todas las operaciones son thread-safe dentro del ámbito del objeto.

Sinopsis de la clase

class Threaded implements Collectable , Traversable , Countable , ArrayAccess {
/* Métodos */
public function chunk (int $size, bool $preserve): array
public function count (): int
public function extend (string $class): bool
public function isRunning (): bool
public function isTerminated (): bool
public function merge (mixed $from, bool $overwrite = ?): bool
public function notify (): bool
public function notifyOne (): bool
public function pop (): bool
public function run (): void
public function shift (): bool
public function synchronized (Closure $block, mixed ...$args): mixed
public function wait (int $timeout = ?): bool
}

Tabla de contenidos

Found A Problem?

Learn How To Improve This PageSubmit a Pull RequestReport a Bug
+add a note

User Contributed Notes 2 notes

up
6
derkontrollfreak+php at gmail dot com
11 years ago
> Threaded objects, most importantly, provide implicit safety for the programmer; all operations on the object scope are safe.
However, this comes with a trade-off: Operations on the instance scope are slower than on plain PHP objects.
Static properties are not affected as they are thread-local.
up
2
jtbibliomania at gmail dot com
7 years ago
It's worth mentioning here that, since v2.0.0, 'Stackable' class was an alias for 'Threaded' class but has been removed since.
+add a note

AltStyle によって変換されたページ (->オリジナル) /