(PECL pthreads >= 2.0.0)
Worker::isShutdown — Détection de statut
Indique si le Worker référencé a été arrêté.
Cette fonction ne contient aucun paramètre.
Un booléen indiquant le statut de l'opération.
Exemple #1 Détecte le statut d'un Worker
<?php
$my = new Worker();
$my->start();
var_dump($my->isShutdown());
$my->shutdown();
var_dump($my->isShutdown());
?>
L'exemple ci-dessus va afficher :
bool(false) bool(true)