Threaded :: isRunning - Detecção de estado.
Sintaxe
public boolean Threaded::isRunning( void )
A função Threaded :: isRunning pode dizer se um objeto referenciado está em execução.
A função Threaded :: isRunning não tem parâmetros e pode retornar uma indicação booleana de estado.
Exemplo
<?php
class My extends Thread {
public function run() {
$this->synchronized(function($thread) {
if(!$thread->done)
$thread->wait();
}, $this);
}
}
$my = new My();
$my->start();
var_dump($my->isRunning());
$my->synchronized(function($thread) {
$thread->done = true;
$thread->notify();
}, $my);
?>