(PECL pthreads >= 2.0.0)
Worker::getStacked — Stack Analysis
Returns the number of objects waiting to be executed by the referenced Worker
У этой функции нет параметров.
An numeric value
Пример #1 Returns the number of objects currently waiting to be executed by the referenced Worker
<?php
class Work extends Threaded {
/** ... **/
public function run(){
/** ... **/
}
}
$my = new Worker();
/** ... **/
$work = new Work();
$my->stack($work);
/** ... **/
printf("My worker has %d jobs remaining\n", $my->getStacked());
/** ... **/
?>
Результат выполнения данного примера:
My worker has 5 jobs remaining