(PECL pthreads >= 0.34)
Thread::wait — Synchronisation
$timeout
] )Fait attendre le Thread appelant d'une notification depuis le Thread référencé.
timeout
Un délai d'attente maximal, optionnel, en microsecondes.
Un booléen indiquant le succès de l'opération.
Exemple #1 Notifications et Attente
<?php
class My extends Thread {
public function run() {
/** Fait attendre le thread **/
$this->synchronized(function($thread){
$thread->wait();
}, $this);
}
}
$my = new My();
$my->start();
/** envoi une notification au thread en attente **/
$my->synchronized(function($thread){
$thread->notify();
}, $my);
var_dump($my->join());
?>
L'exemple ci-dessus va afficher :
bool(true)