Threaded :: wait - Sincronização
Sintaxe
public boolean Threaded::wait([ integer $timeout ] )
A função Threaded :: wait () pode fazer com que o contexto de chamada espere pela notificação do objeto referenciado.
A função Threaded :: wait () pode retornar uma indicação booleana de sucesso.
Exemplo
<?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());
?>