Threaded::isRunning - 狀態檢測。
用法
public boolean Threaded::isRunning( void )
Threaded::isRunning 函數可以判斷引用的對象是否正在執行。
Threaded::isRunning 函數沒有任何參數,可以返回一個布爾狀態指示。
示例
<?php
class My extends Thread {
public function run() {
$this->synchronized(function($thread) {
if(!$thread->done)
$thread->wait();
}, $this);
}
}
$my = new My();
$my->start();
var_dump($my->isRunning());
$my->synchronized(function($thread) {
$thread->done = true;
$thread->notify();
}, $my);
?>
相關用法
- PHP Threaded::isWaiting()用法及代碼示例
- PHP Threaded::synchronized()用法及代碼示例
- PHP Threaded::notify()用法及代碼示例
- PHP Threaded::merge()用法及代碼示例
- PHP Threaded::notifyOne()用法及代碼示例
- PHP Thread::isJoined()用法及代碼示例
注:本文由純淨天空篩選整理自 PHP - Threaded::isRunning() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。