(PECL pthreads >= 2.0.0)
Worker::isShutdown — State Detection
Tell if the referenced Worker has been shutdown
Esta función no tiene parámetros.
A boolean indication of state
Ejemplo #1 Detect the state of a Worker
<?php
$my = new Worker();
$my->start();
var_dump($my->isShutdown());
$my->shutdown();
var_dump($my->isShutdown());
?>
El resultado del ejemplo sería:
bool(false) bool(true)