Worker
PHP Manual

Worker::stack

(PECL pthreads >= 2.0.0)

Worker::stackStacking

Описание

public integer Worker::stack ( Threaded &$work )

Appends the referenced object to the stack of the referenced Worker

Список параметров

work

Threaded object to be executed by the referenced Worker

Возвращаемые значения

The new length of the stack

Примеры

Пример #1 Stacking objects for execution in Workers

<?php
class Work extends Threaded {
    
/** ... **/

    
public function run(){
        
/** ... **/
    
}
}

$my = new Worker();
$work = new Work();
/** ... **/
var_dump($my->stack($work));
/** ... **/
?>

Результат выполнения данного примера:

int(1)


Worker
PHP Manual