(PECL pthreads >= 0.37)
Worker::isWorking — State Detection
Tell if a Worker is executing Stackables
This function has no parameters.
A boolean indication of state
Example #1 Detect the state of a Worker
<?php
class My extends Worker {
public function run() {
/* ... */
}
}
$my = new My();
$my->start();
/* ... */
if ($my->isWorking()) {
/* ... the Worker is busy executing another object */
}
?>