(PECL pthreads >= 0.36)
Stackable::isRunning — Détection de statut
Un Stackable est en cours d'exécution lorsqu'un Thread Worker l'exécute.
Cette fonction ne contient aucun paramètre.
Un booléen indiquant le statut de l'opération.
Exemple #1 Détecte le statut du Stackable référencé
<?php
class Work extends Stackable {
public function run() {
$this->synchronized(function($object){
$object->wait();
}, $this);
}
}
class My extends Worker {
public function run() {
/** ... **/
}
}
$my = new My();
$work = new Work();
$my->stack($work);
$my->start();
$work->synchronized(function($object){
$object->notify();
}, $work);
?>
L'exemple ci-dessus va afficher :
bool(true)