PHP Conference Japan 2024

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