Threaded::wait

(PECL pthreads >= 2.0.0)

Threaded::wait同步

描述

public Threaded::wait(int $timeout = ?): bool

将导致调用上下文等待来自引用对象的通知。

参数

timeout

可选超时,以微秒为单位。

返回值

成功时返回 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->notify();
},
$my);
var_dump($my->join());
?>

上面的例子将输出

bool(true)

添加说明

用户贡献说明

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