Thread::isRunning
(PECL pthreads >= 0.34)
Thread::isRunning — Détection de statut
Description
final public boolean Thread::isRunning
( void
)
Indique si le Thread référencé est en cours d'exécution.
Liste de paramètres
Cette fonction ne contient aucun paramètre.
Valeurs de retour
Un booléen indiquant le statut de l'opération.
Note:
Un Thread est considéré comme en cours d'exécution lorsqu'il exécute la méthode run.
Exemples
Exemple #1 Détecte le statut du Thread référencé
<?php
class My extends Thread {
public function run() {
$this->synchronized(function($thread){
$thread->wait();
}, $this);
}
}
$my = new My();
$my->start();
var_dump($my->isRunning());
$my->synchronized(function($thread){
$thread->notify();
}, $my);
?>
L'exemple ci-dessus va afficher :
bool(true)