webman的协程应该如何使用?

问题描述

在按照文档例子使用协程时发生如下报错

程序代码

public function Test1()
    {
        Coroutine::create(function(){
            Timer::sleep(1.5);
            echo "hello coroutine\n";
        });
        return response('hello webman');
    }

报错信息

Error: Class "Swoole\Coroutine" not found in /mnt/g/PHPDevelop/WebManProjects/webman-tools-api/ToolApi/vendor/workerman/workerman/src/Events/Swoole.php:59
259 3 0
3个回答

morris

swoole扩展装了吗

lsmir2

config/process.php中通过eventLoop配置协程驱动
看文档
https://www.workerman.net/doc/webman/coroutine/coroutine.html

  • 暂无评论
latin

截图

https://www.workerman.net/doc/webman/coroutine/coroutine.html
手册里的前提条件一眼都不看啊

  • 暂无评论
🔝