Threaded::notifyOne

(PECL pthreads >= 3.0.0)

Threaded::notifyOne同步

描述

public Threaded::notifyOne(): bool

向引用对象发送通知。这将解阻塞至少一个被阻塞的线程(与 Threaded::notify() 解阻塞所有线程相反)。

参数

此函数没有参数。

返回值

成功时返回 true,失败时返回 false

示例

示例 #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)

添加说明

用户贡献说明

此页面没有用户贡献说明。
To Top