Thread::isJoined - 状态检测
用法
public boolean Thread::isJoined( void )
Thread::isJoined() 函数可以判断引用的 Thread 是否已加入。
Thread::isJoined() 函数没有任何参数,可以返回状态的布尔指示。
示例
<?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);
?>
相关用法
注:本文由纯净天空筛选整理自 PHP - Thread::isJoined() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。