Coroutine::sleep
最后更新于:2022-04-02 06:26:13
# Coroutine::sleep
[TOC]
进入等待状态。相当于PHP的`sleep`函数,不同的是`Coroutine::sleep`是协程调度器实现的,底层会`yield`当前协程,让出时间片,并添加一个异步定时器,当超时时间到达时重新`resume`当前协程,恢复运行。使用`sleep`接口可以方便地实现超时等待功能。
~~~
function Coroutine::sleep(float $seconds);
~~~
* `$seconds`为睡眠的时间,单位为秒,支持浮点型,最小精度为毫秒(`0.001秒`)
* `$seconds`必须大于`0`,最大不得超过一天时间(`86400秒`)
> 在`2.0.9`或更高版本可用
## 使用实例
~~~
$serv = new Swoole\Http\Server("127.0.0.1", 9502);
$serv->on('Request', function($request, $response) {
//等待200ms后向浏览器发送响应
Swoole\Coroutine::sleep(0.2);
$response->end("
';