Worker::getStacked

(PECL pthreads >= 2.0.0)

Worker::getStackedStack Analysis

Описание

public integer Worker::getStacked ( void )

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

Коментарии

404 Not Found

404 Not Found


nginx

    Поддержать сайт на родительском проекте КГБ