Thread::isJoined

(PECL pthreads >= 0.34)

Thread::isJoinedDétection de statut

Description

final public boolean Thread::isJoined ( void )

Indique si le Thread référencé a été joint par un autre contexte.

Liste de paramètres

Cette fonction ne contient aucun paramètre.

Valeurs de retour

Un booléen indiquant le statut de l'opération.

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->isJoined());
$my->synchronized(function($thread){
	$thread->notify();
}, $my);
?>

L'exemple ci-dessus va afficher :

bool(false)

LoadingChargement en cours