Worker::isWorking

(PECL pthreads >= 0.37)

Worker::isWorking — State Detection


Описание

final public boolean Worker::isWorking ( void )

Tell if a Worker is executing Stackables


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

У этой функции нет параметров.


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

A boolean indication of state


Примеры

Пример #1 Detect the state of a Worker

class My extends Worker {
    public function run() {
        /* ... */
    }
}
$my = new My();
$my->start();
/* ... */
if ($my->isWorking()) {
    /* ... the Worker is busy executing another object */
}


User Contributed Notes


There are no user contributed notes for this page.
To Top

Описание класса worker, примеры использования класса worker.



Смотрите также:
Описание на ru2.php.net
Описание на php.ru