PHP - Funzione Threaded :: notify ()
Threaded :: notify - Sincronizzazione
Sintassi
public boolean Threaded::notify ( void )
La funzione Threaded :: notify () può inviare una notifica all'oggetto di riferimento.
La funzione Threaded :: notify () non ha parametri e 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());
?>