PHP - Funzione Thread :: isJoined ()
Discussione :: isJoined - Rilevamento dello stato
Sintassi
public boolean Thread::isJoined( void )
La funzione Thread :: isJoined () può dire se il Thread a cui si fa riferimento è stato unito.
La funzione Thread :: isJoined () non ha parametri e può restituire un'indicazione booleana dello stato.
Esempio
<?php
class My extends Thread {
public function run() {
$this->synchronized(function($thread) {
$thread->wait();
}, $this);
}
}
$my = new My();
$my->start();
var_dump($my->isJoined());
$my->synchronized(function($thread){
$thread->notify();
}, $my);
?>