(PECL pthreads >= 2.0.0)
Threaded::wait — 同步
timeout
可选的超时时间,单位为微秒。
示例 #1 通知和等待
<?php
class My extends Thread {
public function run() {
/** 使此线程等待 **/
$this->synchronized(function($thread){
if (!$thread->done)
$thread->wait();
}, $this);
}
}
$my = new My();
$my->start();
/** 发送通知给等待的线程 **/
$my->synchronized(function($thread){
$thread->done = true;
$thread->notify();
}, $my);
var_dump($my->join());
?>
以上示例将输出
bool(true)