(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)