PHP - Funzione Threaded :: notifyOne ()
Threaded :: notifyOne - Sincronizzazione
Sintassi
public boolean Threaded::notifyOne( void )
La funzione Threaded :: notifyOne () può inviare una notifica all'oggetto di riferimento. Sblocca almeno uno dei thread bloccati.
La funzione Threaded :: notifyOne () 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->notifyOne();
}, $my);
var_dump($my->join());
?>