(PECL pthreads >= 3.0.0)
Threaded::notifyOne — Synchronise
Envoie une notification à l'objet référencé. Cela débloque au moins un des threads bloqués (par opposition à les débloquer tous, comme on le voit avec Threaded::notify()).
Cette fonction ne contient aucun paramètre.
Exemple #1 Notifications et attente
<?php
class My extends Thread {
public function run() {
/** cause this thread to wait **/
$this->synchronized(function($thread){
if (!$thread->done)
$thread->wait();
}, $this);
}
}
$my = new My();
$my->start();
/** envoie une notification au thread en attente **/
$my->synchronized(function($thread){
$thread->done = true;
$thread->notifyOne();
}, $my);
var_dump($my->join());
?>
L'exemple ci-dessus va afficher :
bool(true)