(PECL pthreads < 3.0.0)
Threaded::isWaiting — Détection de statut
Cette méthode a été supprimée dans pthreads v3.
Indique si l'objet référencé est en attente d'une notification
Cette fonction ne contient aucun paramètre.
Un booléen indiquant le statut
Exemple #1 Détecte le statut de l'objet référencé
<?php
class My extends Thread {
public function run() {
$this->synchronized(function($thread){
if (!$this->done)
$thread->wait();
}, $this);
}
protected $done;
}
$my = new My();
$my->start();
$my->synchronized(function($thread){
var_dump(
$thread->isWaiting());
$thread->done = true;
$thread->notify();
}, $my);
?>
L'exemple ci-dessus va afficher :
bool(true)