(PECL pthreads >= 0.37)
Worker::isShutdown — State Detection
Tell if the referenced Worker has been shutdown
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();
var_dump($my->isShutdown());
$my->shutdown();
var_dump($my->isShutdown());
?>
The above example will output:
bool(false) bool(true)