Threaded::wait

(PECL pthreads >= 2.0.0)

Threaded::waitSynchronization

說明

public Threaded::wait(int $timeout = ?): bool

讓發(fā)起調(diào)用的線程上下文進(jìn)入等待狀態(tài),直到收到其他線程的喚醒通知

參數(shù)

timeout

可選參數(shù),等待時(shí)間,以微秒計(jì)

返回值

成功時(shí)返回 true, 或者在失敗時(shí)返回 false

范例

示例 #1 等待和喚醒

<?php
class My extends Thread {
    public function 
run() {
        
/** 讓本線程進(jìn)入等待狀態(tài) **/
        
$this->synchronized(function($thread){
            if (!
$thread->done)
                
$thread->wait();
        }, 
$this);
    }
}
$my = new My();
$my->start();
/** 向處于等待狀態(tài)的線程發(fā)送喚醒通知 **/
$my->synchronized(function($thread){
    
$thread->done true;
    
$thread->notify();
}, 
$my);
var_dump($my->join());
?>

以上例程會(huì)輸出:

bool(true)