PHP - Funzione Threaded :: isWaiting ()
Threaded :: isWaiting - State Detection.
Sintassi
public boolean Threaded::isWaiting( void )
La funzione Threaded :: isWaiting può sapere se un oggetto a cui si fa riferimento è in attesa della notifica.
La funzione Threaded :: isWaiting non ha parametri e può restituire un'indicazione booleana di stato.
Esempio
<?php
class My extends Thread {
public function run() {
$this->synchronized(function($thread) {
if(!$this->done)
$thread->wait();
}, $this);
}
protected $done;
}
$my = new My();
$my->start();
$my->synchronized(function($thread) {
var_dump($thread->isWaiting());
$thread->done = true;
$thread->notify();
}, $my);
?>