Worker::stack
PHP Manual
PHP Manual»Worker»Worker::stack

Worker::stack

(PECL pthreads >= 2.0.0)

Worker::stackStacking work

Опис

public function Worker::stack(Threaded &$work): int

Appends the new work to the stack of the referenced worker.

Параметри

work
A Threaded object to be executed by the worker.

Значення, що повертаються

The new size of the stack.

Приклади

Приклад #1 Stacking a task for execution onto a worker

<?php
$worker = new Worker();
$work = new class extends Threaded {};

var_dump($worker->stack($work));

Поданий вище приклад виведе:

int(1)
To Top