PHP - Funzione Threaded :: isRunning ()
Threaded :: isRunning - State Detection.
Sintassi
public boolean Threaded::isRunning( void )
La funzione Threaded :: isRunning può dire se un oggetto referenziato è in esecuzione.
La funzione Threaded :: isRunning 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(!$thread->done)
$thread->wait();
}, $this);
}
}
$my = new My();
$my->start();
var_dump($my->isRunning());
$my->synchronized(function($thread) {
$thread->done = true;
$thread->notify();
}, $my);
?>