(PECL pthreads >= 3.0.0)
Threaded::notifyOne — 同步
向引用的对象发送通知。这将解阻塞至少一个阻塞的线程(与解阻塞所有线程相反,如 Threaded::notify() 中所示)。
此函数没有参数。
示例 #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->notifyOne();
}, $my);
var_dump($my->join());
?>
以上示例将输出
bool(true)