(PECL pthreads >= 2.0.0)
State Detection
public boolean Worker::isShutdown ( void )
Tell if the referenced Worker has been shutdown
Returns:
A boolean indication of state
Examples:
Detect the state of a Worker
<?php $my = new Worker(); $my->start(); var_dump($my->isShutdown()); $my->shutdown(); var_dump($my->isShutdown()); ?>
The above example will output:
bool(false) bool(true)
Please login to continue.