Thread::isWaiting

(PECL pthreads >= 0.34)

Thread::isWaitingDétection de statut

Description

final public boolean Thread::isWaiting ( void )

Indique si le Thread référencé est en attente ou non d'une notification.

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

L'exemple ci-dessus va afficher :

bool(true)

LoadingChargement en cours