Worker::stack
(PECL pthreads >= 2.0.0)
Worker::stack — Stacking work
Descrição
Appends the new work to the stack of the referenced worker.
Parâmetros
work
-
A Threaded object to be executed by the worker.
Valor Retornado
The new size of the stack.
Exemplos
Example #1 Stacking a task for execution onto a worker
<?php
$worker = new Worker();
$work = new class extends Threaded {};
var_dump($worker->stack($work));
O exemplo acima produzirá:
int(1)