PHP - Funzione Threaded :: synchronized ()
Threaded :: synchronized - Sincronizzazione
Sintassi
public mixed Threaded::synchronized( Closure $block [, mixed $... ] )
La funzione Threaded :: synchronized () può eseguire il blocco mantenendo un blocco di sincronizzazione degli oggetti referenziati per il contesto chiamante.
La funzione Threaded :: synchronized () può restituire un valore dal blocco.
Esempio
<?php
class My extends Thread {
public function run() {
$this->synchronized(function($thread) {
if(!$thread->done)
$thread->wait();
}, $this);
}
}
$my = new My();
$my->start();
$my->synchronized(function($thread) {
$thread->done = true;
$thread->notify();
}, $my);
var_dump($my->join());
?>