Threaded :: isWaiting - Detecção de estado.
Sintaxe
public boolean Threaded::isWaiting( void )
A função Threaded :: isWaiting pode dizer se um objeto referenciado está aguardando a notificação.
A função Threaded :: isWaiting não tem nenhum parâmetro e pode retornar uma indicação booleana de estado.
Exemplo
<?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);
?>