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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。