PHP - Funzione threaded :: wait
Threaded :: wait - sincronizzazione
Sintassi
public boolean Threaded::wait([ integer $timeout ] )
La funzione Threaded :: wait () può far sì che il contesto chiamante attenda la notifica dall'oggetto a cui si fa riferimento.
La funzione Threaded :: wait () può restituire un'indicazione booleana di successo.
Esempio
<?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();
/** send notification to the waiting thread **/
$my->synchronized(function($thread){
$thread->done = true;
$thread->notify();
}, $my);
var_dump($my->join());
?>