Threaded::notifyOne - 同步
用法
public boolean Threaded::notifyOne( void )
Threaded::notifyOne() 函数可以向引用的对象发送通知。它至少解除阻塞的线程之一。
Threaded::notifyOne() 函数没有任何参数,可以返回成功的布尔值指示。
示例
<?php
class My extends Thread {
public function run() {
/** cause this thread to wait **/
$this->synchronized(function($thread){
if(!$thread->done)
$thread->wait();
}, $this);
}
}
$my = new My();
$my->start();
/** send notification to the waiting thread **/
$my->synchronized(function($thread) {
$thread->done = true;
$thread->notifyOne();
}, $my);
var_dump($my->join());
?>
相关用法
- PHP Threaded::notify()用法及代码示例
- PHP Threaded::synchronized()用法及代码示例
- PHP Threaded::merge()用法及代码示例
- PHP Threaded::isWaiting()用法及代码示例
- PHP Threaded::isRunning()用法及代码示例
- PHP Thread::isJoined()用法及代码示例
注:本文由纯净天空筛选整理自 PHP - Threaded::notifyOne() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。