From 3ce67e3ede27d7f24aaa985e65b13a31dd71d4c4 Mon Sep 17 00:00:00 2001 From: chaz6chez Date: Sun, 29 Sep 2024 10:05:24 +0800 Subject: [PATCH] doc update --- README.md | 347 +++--------------------------------------- docs/doc/coroutine.md | 226 +++++++++++++++++++++++++++ docs/doc/custom.md | 89 +++++++++++ 3 files changed, 337 insertions(+), 325 deletions(-) create mode 100644 docs/doc/coroutine.md create mode 100644 docs/doc/custom.md diff --git a/README.md b/README.md index 75220e1..9a0a4e4 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,10 @@ -# webman-coroutine +

workbunny

+ +**

workbunny/webman-coroutine

** + +**

🐇 Webman plugin for coroutine web server. 🐇

** + +# Webman plugin for coroutine web server.
@@ -16,24 +22,24 @@
-## 🐞 简介 +## 简介 -> **🚀🚀 webman-coroutine 是一个 webman 开发框架生态下的协程基建支撑插件** +> **🚀🐇 webman-coroutine 是一个 webman 开发框架生态下的协程基建支撑插件** **主要实现以下功能**: -1. 支持`workerman 4.x`的 swow 协程驱动能力,兼容`workerman 5.x`版本自带的`swow`协程驱动; -2. 支持`workerman 4.x`的 swoole 协程驱动能力,兼容`workerman 5.x`版本自带的`swoole`协程驱动; -3. 实现`coroutine web server` 用于实现具备协程能力的 web 框架基建 -4. 支持自定义协程实现,如基于`revolt`等 +1. 支持`workerman 4.x`的 [swow](https://github.com/swow/swow) 协程驱动能力,兼容`workerman 5.x`版本自带的`swow`协程驱动; +2. 支持`workerman 4.x`的 [swoole](https://github.com/swoole/swoole-src) 协程驱动能力,兼容`workerman 5.x`版本自带的`swoole`协程驱动; +3. 支持 [ripple](https://github.com/cloudtay/ripple) 协程驱动能力,兼容`revolt (PHP-fiber)`协程生态; +4. 实现`coroutine web server` 用于实现具备协程能力的web服务; -## 🕷️ 说明 +## 说明 1. `workerman 4.x/5.x`驱动下的 webman 框架无法完整使用`swoole`的协程能力,所以使用`CoroutineWebServer`来替代`webman`自带的`webServer` 2. `workerman 4.x`下还未有官方支持的`swow`协程驱动,本插件提供`SwowEvent`事件驱动支撑`workerman 4.x`下的协程能力 3. 由于配置`event-loop`等操作相较于普通开发会存在一定的心智负担,所以本插件提供了`event_loop()`函数,用于根据当前环境自动选择合适的事件驱动 -## 🪰 安装 +## 安装 通过`composer`安装 @@ -49,11 +55,7 @@ composer require workbunny/webman-coroutine - channel_size : (int), 每个connection的channel容量 - consumer_count : (int), 每个connection的消费者数量 -## 📖 文档 - -[API文档](https://workbunny.github.io/webman-coroutine/) - -## 🐜 教程 +## 使用 #### 1. swow 环境 @@ -90,318 +92,13 @@ composer require workbunny/webman-coroutine > 注:该环境协程依赖`php-fiber`,并没有自动`hook`系统的阻塞函数,但支持所有支持`php-fiber`的插件 -#### 4. 自定义环境 - -1. 实现`Workbunny\WebmanCoroutine\Handlers\HandlerInterface`接口,实现自定义协程处理逻辑 -2. 通过`Workbunny\WebmanCoroutine\Factory::register(HandlerInterface $handler)`注册你的协程处理器 -3. 修改`config/server.php`中`'event_loop' => {你的事件循环类}` -4. 启动`CoroutineWebServer` 接受处理协程请求 - -> 注:`\Workbunny\WebmanCoroutine\event_loop()`自动判断加载顺序按`\Workbunny\WebmanCoroutine\Factory::$_handlers`的顺序执行`available()`择先 - -> 注:因为`eventLoopClass`与`HandlerClass`是一一对应的,所以建议不管是否存在相同的事件循环或者相同的处理器都需要继承后重命名 - -## 自定义协程化 - -`webman-coroutine`提供了用于让自己的自定义服务/进程协程化的基础工具 - -> 注:考虑到 webman 框架默认不会启用注解代理,所以这里没有使用注解代理来处理协程化代理 - -#### 1. 自定义进程 - -假设我们已经存在一个自定义服务类,如`MyProcess.php` - -```php -namespace process; - -class MyProcess { - public function onWorkerStart() { - // 具体业务逻辑 - } - // ... -} -``` - -在`webman/workerman`环境中,`onWorkerStart()`是一个 worker 进程所必不可少的方法, -假设我们想要将它协程化,在不改动`MyProcess`的情况下,只需要新建一个`MyCoroutineProcess.php` - -```php -namespace process; - -use Workbunny\WebmanCoroutine\CoroutineWorkerInterface; -use Workbunny\WebmanCoroutine\CoroutineWorkerMethods; - -class MyCoroutineProcess extends MyProcess implements CoroutineWorkerInterface { - - // 引入协程代理方法 - use CoroutineWorkerMethods; -} -``` - -此时的`MyCoroutineProcess`将拥有协程化的`onWorkerStart()`,将新建的`MyCoroutineProcess`添加到 webman 的自定义进程配置`config/process.php`中启动即可 - -#### 2. 自定义服务 - -> 代码样例:[CoroutineWebServer.php](src%2FCoroutineWebServer.php) - -假设我们已经存在一个自定义服务类,如`MyServer.php` - -```php -namespace process; - -class MyServer { - - public function onMessage($connection, $data) { - // 具体业务逻辑 - } - - // ... -} -``` - -在`webman/workerman`环境中,`onMessage()`是一个具备监听能力的进程所必不可少的方法,假设我们想要将它协程化,在不改动`MyServer`的情况下,只需要新建一个`MyCoroutineServer.php` - -```php -namespace process; - -use Workbunny\WebmanCoroutine\CoroutineServerInterface; -use Workbunny\WebmanCoroutine\CoroutineServerMethods; - -class MyCoroutineServer extends MyServer implements CoroutineServerInterface { - - // 引入协程代理方法 - use CoroutineServerMethods; -} -``` - -此时的`MyCoroutineServer`将拥有协程化的`onMessage()`,将新建的`MyCoroutineServer`添加到 webman 的自定义进程配置`config/process.php`中启动即可 - -## 协程入门 - -#### 1. 协程创建 - -Swow 的协程是面向对象的,所以我们可以这样创建一个待运行的协程 -``` -use Swow\Coroutine; - -$coroutine = new Coroutine(static function (): void { - echo "Hello 开源技术小栈\n"; -}); -``` -这样创建出来的协程并不会被运行,而是只进行了内存的申请。 - -#### 2. 协程的观测 - -通过 `var_dump` 打印协程对象,我们又可以看到这样的输出: -``` -var_dump($coroutine); -``` -打印输出 -```ts -class Swow\Coroutine#240 (4) { - public $id => - int(12) - public $state => - string(7) "waiting" - public $switches => - int(0) - public $elapsed => - string(3) "0ms" -} -``` -从输出我们可以得到一些协程状态的信息,如:协程的 `id` 是`12`,状态是`等待中`,切换次数是`0`,运行了`0`毫秒(即没有运行)。 - -通过 `resume()` 方法,我们可以唤醒这个协程: -``` -$coroutine->resume(); -``` -协程中的PHP代码被执行,于是我们就看到了下述信息: -```yaml -Hello 开源技术小栈 -``` -这时候我们再通过 `var_dump($coroutine);` 去打印协程的状态,我们得到以下内容: -```ts -class Swow\Coroutine#240 (4) { - public $id => - int(12) - public $state => - string(4) "dead" - public $switches => - int(1) - public $elapsed => - string(3) "0ms" -} -``` -可以看到协程已经运行完了所有的代码并进入`dead`状态,共经历一次协程切换。 - -## 协程实战 - -#### 多进程和协程执行顺序 - -![image](https://github.com/user-attachments/assets/16fb3138-52ae-4ed1-9c15-bf51c6151fe3) - -#### 实战伪代码 - -```shell -/** @desc 任务1 */ -function task1(): void -{ - // 总共3s - for ($i = 0; $i < 3; $i++) { - // 写入文件 - sleep(1); - echo '[x] [🕷️] [写入文件] [' . $i . '] ' . date('Y-m-d H:i:s') . PHP_EOL; - } -} - -/** @desc 任务2 */ -function task2(): void -{ - // 总共5s - for ($i = 0; $i < 5; $i++) { - // 发送邮件给50名会员, - sleep(1); - echo '[x] [🍁] [发送邮件] [' . $i . '] ' . date('Y-m-d H:i:s') . PHP_EOL; - } -} - -/** @desc 任务3 */ -function task3(): void -{ - // 总共10s - for ($i = 0; $i < 10; $i++) { - // 模拟插入10 - sleep(1); - echo '[x] [🌾] [插入数据] [' . $i . '] ' . date('Y-m-d H:i:s') . PHP_EOL; - } -} -``` -#### 普通请求执行 -**执行代码** -```php -$timeOne = microtime(true); -task1(); -task2(); -task3(); -$timeTwo = microtime(true); -echo '[x] [运行时间] ' . ($timeTwo - $timeOne) . PHP_EOL; -``` -**打印结果** -```shell -[x] [🕷️] [写入文件] [0] 2024-09-28 08:54:26 -[x] [🕷️] [写入文件] [1] 2024-09-28 08:54:27 -[x] [🕷️] [写入文件] [2] 2024-09-28 08:54:28 -[x] [🍁] [发送邮件] [0] 2024-09-28 08:54:29 -[x] [🍁] [发送邮件] [1] 2024-09-28 08:54:30 -[x] [🍁] [发送邮件] [2] 2024-09-28 08:54:31 -[x] [🍁] [发送邮件] [3] 2024-09-28 08:54:32 -[x] [🍁] [发送邮件] [4] 2024-09-28 08:54:33 -[x] [🌾] [插入数据] [0] 2024-09-28 08:54:34 -[x] [🌾] [插入数据] [1] 2024-09-28 08:54:35 -[x] [🌾] [插入数据] [2] 2024-09-28 08:54:36 -[x] [🌾] [插入数据] [3] 2024-09-28 08:54:37 -[x] [🌾] [插入数据] [4] 2024-09-28 08:54:38 -[x] [🌾] [插入数据] [5] 2024-09-28 08:54:39 -[x] [🌾] [插入数据] [6] 2024-09-28 08:54:40 -[x] [🌾] [插入数据] [7] 2024-09-28 08:54:41 -[x] [🌾] [插入数据] [8] 2024-09-28 08:54:42 -[x] [🌾] [插入数据] [9] 2024-09-28 08:54:43 -[x] [运行时间] 18.004005908966 -``` - -> 可以看出以上代码是`顺序执行`的,执行运行时间`18.004005908966`秒 - -#### 🚀 协程加持执行 - -**执行代码** -```php -$timeOne = microtime(true); -\Swow\Coroutine::run(function () { - task1(); -}); -\Swow\Coroutine::run(function () { - task2(); -}); -\Swow\Coroutine::run(function () { - task3(); -}); -$timeTwo = microtime(true); -echo '[x] [运行时间] ' . ($timeTwo - $timeOne) . PHP_EOL; -``` - -**打印结果** -```shell -[x] [运行时间] 5.5074691772461E-5 -``` -> 这是因为协程化以后,协程之间是异步的,主协程并没有等待任务的协程结果,所以执行时间`5.5074691772461E-5`秒。 - -**改造代码** - -- 使用waitGroup -```php -$wg = new \Swow\Sync\WaitGroup(); -$wg->add(3); -$timeOne = microtime(true); -\Swow\Coroutine::run(function () use ($wg) { - task1(); - $wg->done(); -}); -\Swow\Coroutine::run(function () use ($wg) { - task2(); - $wg->done(); -}); -\Swow\Coroutine::run(function () use ($wg) { - task3(); - $wg->done(); -}); -// 等待协程完毕 -$wg->wait(); -$timeTwo = microtime(true); -echo '[x] [运行时间] ' . ($timeTwo - $timeOne) . PHP_EOL; -``` - -- 使用waitAll(),**webman/workerman环境下请使用waitGroup** -```php -$timeOne = microtime(true); -\Swow\Coroutine::run(function () { - task1(); -}); -\Swow\Coroutine::run(function () { - task2(); -}); -\Swow\Coroutine::run(function () { - task3(); -}); -// 等待协程完毕 -waitAll(); -$timeTwo = microtime(true); -echo '[x] [运行时间] ' . ($timeTwo - $timeOne) . PHP_EOL; -``` - -**打印结果** -```shell -[x] [🕷️] [写入文件] [0] 2024-09-28 09:02:46 -[x] [🍁] [发送邮件] [0] 2024-09-28 09:02:46 -[x] [🌾] [插入数据] [0] 2024-09-28 09:02:46 -[x] [🕷️] [写入文件] [1] 2024-09-28 09:02:47 -[x] [🍁] [发送邮件] [1] 2024-09-28 09:02:47 -[x] [🌾] [插入数据] [1] 2024-09-28 09:02:47 -[x] [🕷️] [写入文件] [2] 2024-09-28 09:02:48 -[x] [🍁] [发送邮件] [2] 2024-09-28 09:02:48 -[x] [🌾] [插入数据] [2] 2024-09-28 09:02:48 -[x] [🍁] [发送邮件] [3] 2024-09-28 09:02:49 -[x] [🌾] [插入数据] [3] 2024-09-28 09:02:49 -[x] [🍁] [发送邮件] [4] 2024-09-28 09:02:50 -[x] [🌾] [插入数据] [4] 2024-09-28 09:02:50 -[x] [🌾] [插入数据] [5] 2024-09-28 09:02:51 -[x] [🌾] [插入数据] [6] 2024-09-28 09:02:52 -[x] [🌾] [插入数据] [7] 2024-09-28 09:02:53 -[x] [🌾] [插入数据] [8] 2024-09-28 09:02:54 -[x] [🌾] [插入数据] [9] 2024-09-28 09:02:55 -[x] [运行时间] 9.4166378974915 -``` +## 文档 -> 主协程等待子协程,子协程交替运行,执行时间`9.4166378974915`秒。 +| 目录 | 地址 | +|:-------------:|:-----------------------------------------------------------------:| +| Fucntion APIs | [Fucntion APIs 文档](https://workbunny.github.io/webman-coroutine/) | +| 教程 | [协程入门](docs/doc/coroutine.md) | +| | [自定义开发](docs/doc/custom.md) | ## ♨️ 相关文章 diff --git a/docs/doc/coroutine.md b/docs/doc/coroutine.md new file mode 100644 index 0000000..f5247f1 --- /dev/null +++ b/docs/doc/coroutine.md @@ -0,0 +1,226 @@ +## 协程入门 + +#### 1. 协程创建 + +Swow 的协程是面向对象的,所以我们可以这样创建一个待运行的协程 +``` +use Swow\Coroutine; + +$coroutine = new Coroutine(static function (): void { + echo "Hello 开源技术小栈\n"; +}); +``` +这样创建出来的协程并不会被运行,而是只进行了内存的申请。 + +#### 2. 协程的观测 + +通过 `var_dump` 打印协程对象,我们又可以看到这样的输出: +``` +var_dump($coroutine); +``` +打印输出 +```ts +class Swow\Coroutine#240 (4) { + public $id => + int(12) + public $state => + string(7) "waiting" + public $switches => + int(0) + public $elapsed => + string(3) "0ms" +} +``` +从输出我们可以得到一些协程状态的信息,如:协程的 `id` 是`12`,状态是`等待中`,切换次数是`0`,运行了`0`毫秒(即没有运行)。 + +通过 `resume()` 方法,我们可以唤醒这个协程: +``` +$coroutine->resume(); +``` +协程中的PHP代码被执行,于是我们就看到了下述信息: +```yaml +Hello 开源技术小栈 +``` +这时候我们再通过 `var_dump($coroutine);` 去打印协程的状态,我们得到以下内容: +```ts +class Swow\Coroutine#240 (4) { + public $id => + int(12) + public $state => + string(4) "dead" + public $switches => + int(1) + public $elapsed => + string(3) "0ms" +} +``` +可以看到协程已经运行完了所有的代码并进入`dead`状态,共经历一次协程切换。 + +## 协程实战 + +#### 多进程和协程执行顺序 + +![image](https://github.com/user-attachments/assets/16fb3138-52ae-4ed1-9c15-bf51c6151fe3) + +#### 实战伪代码 + +```shell +/** @desc 任务1 */ +function task1(): void +{ + // 总共3s + for ($i = 0; $i < 3; $i++) { + // 写入文件 + sleep(1); + echo '[x] [🕷️] [写入文件] [' . $i . '] ' . date('Y-m-d H:i:s') . PHP_EOL; + } +} + +/** @desc 任务2 */ +function task2(): void +{ + // 总共5s + for ($i = 0; $i < 5; $i++) { + // 发送邮件给50名会员, + sleep(1); + echo '[x] [🍁] [发送邮件] [' . $i . '] ' . date('Y-m-d H:i:s') . PHP_EOL; + } +} + +/** @desc 任务3 */ +function task3(): void +{ + // 总共10s + for ($i = 0; $i < 10; $i++) { + // 模拟插入10 + sleep(1); + echo '[x] [🌾] [插入数据] [' . $i . '] ' . date('Y-m-d H:i:s') . PHP_EOL; + } +} +``` +#### 普通请求执行 +**执行代码** +```php +$timeOne = microtime(true); +task1(); +task2(); +task3(); +$timeTwo = microtime(true); +echo '[x] [运行时间] ' . ($timeTwo - $timeOne) . PHP_EOL; +``` +**打印结果** +```shell +[x] [🕷️] [写入文件] [0] 2024-09-28 08:54:26 +[x] [🕷️] [写入文件] [1] 2024-09-28 08:54:27 +[x] [🕷️] [写入文件] [2] 2024-09-28 08:54:28 +[x] [🍁] [发送邮件] [0] 2024-09-28 08:54:29 +[x] [🍁] [发送邮件] [1] 2024-09-28 08:54:30 +[x] [🍁] [发送邮件] [2] 2024-09-28 08:54:31 +[x] [🍁] [发送邮件] [3] 2024-09-28 08:54:32 +[x] [🍁] [发送邮件] [4] 2024-09-28 08:54:33 +[x] [🌾] [插入数据] [0] 2024-09-28 08:54:34 +[x] [🌾] [插入数据] [1] 2024-09-28 08:54:35 +[x] [🌾] [插入数据] [2] 2024-09-28 08:54:36 +[x] [🌾] [插入数据] [3] 2024-09-28 08:54:37 +[x] [🌾] [插入数据] [4] 2024-09-28 08:54:38 +[x] [🌾] [插入数据] [5] 2024-09-28 08:54:39 +[x] [🌾] [插入数据] [6] 2024-09-28 08:54:40 +[x] [🌾] [插入数据] [7] 2024-09-28 08:54:41 +[x] [🌾] [插入数据] [8] 2024-09-28 08:54:42 +[x] [🌾] [插入数据] [9] 2024-09-28 08:54:43 +[x] [运行时间] 18.004005908966 +``` + +> 可以看出以上代码是`顺序执行`的,执行运行时间`18.004005908966`秒 + +#### 🚀 协程加持执行 + +**执行代码** +```php +$timeOne = microtime(true); +\Swow\Coroutine::run(function () { + task1(); +}); +\Swow\Coroutine::run(function () { + task2(); +}); +\Swow\Coroutine::run(function () { + task3(); +}); +$timeTwo = microtime(true); +echo '[x] [运行时间] ' . ($timeTwo - $timeOne) . PHP_EOL; +``` + +**打印结果** +```shell +[x] [运行时间] 5.5074691772461E-5 +``` +> 这是因为协程化以后,协程之间是异步的,主协程并没有等待任务的协程结果,所以执行时间`5.5074691772461E-5`秒。 + +**改造代码** + +- 使用waitGroup +```php +$wg = new \Swow\Sync\WaitGroup(); +$wg->add(3); +$timeOne = microtime(true); +\Swow\Coroutine::run(function () use ($wg) { + task1(); + $wg->done(); +}); +\Swow\Coroutine::run(function () use ($wg) { + task2(); + $wg->done(); +}); +\Swow\Coroutine::run(function () use ($wg) { + task3(); + $wg->done(); +}); +// 等待协程完毕 +$wg->wait(); +$timeTwo = microtime(true); +echo '[x] [运行时间] ' . ($timeTwo - $timeOne) . PHP_EOL; +``` + +- 使用waitAll(),**webman/workerman环境下请使用waitGroup** +```php +$timeOne = microtime(true); +\Swow\Coroutine::run(function () { + task1(); +}); +\Swow\Coroutine::run(function () { + task2(); +}); +\Swow\Coroutine::run(function () { + task3(); +}); +// 等待协程完毕 +waitAll(); +$timeTwo = microtime(true); +echo '[x] [运行时间] ' . ($timeTwo - $timeOne) . PHP_EOL; +``` + +**打印结果** +```shell +[x] [🕷️] [写入文件] [0] 2024-09-28 09:02:46 +[x] [🍁] [发送邮件] [0] 2024-09-28 09:02:46 +[x] [🌾] [插入数据] [0] 2024-09-28 09:02:46 +[x] [🕷️] [写入文件] [1] 2024-09-28 09:02:47 +[x] [🍁] [发送邮件] [1] 2024-09-28 09:02:47 +[x] [🌾] [插入数据] [1] 2024-09-28 09:02:47 +[x] [🕷️] [写入文件] [2] 2024-09-28 09:02:48 +[x] [🍁] [发送邮件] [2] 2024-09-28 09:02:48 +[x] [🌾] [插入数据] [2] 2024-09-28 09:02:48 +[x] [🍁] [发送邮件] [3] 2024-09-28 09:02:49 +[x] [🌾] [插入数据] [3] 2024-09-28 09:02:49 +[x] [🍁] [发送邮件] [4] 2024-09-28 09:02:50 +[x] [🌾] [插入数据] [4] 2024-09-28 09:02:50 +[x] [🌾] [插入数据] [5] 2024-09-28 09:02:51 +[x] [🌾] [插入数据] [6] 2024-09-28 09:02:52 +[x] [🌾] [插入数据] [7] 2024-09-28 09:02:53 +[x] [🌾] [插入数据] [8] 2024-09-28 09:02:54 +[x] [🌾] [插入数据] [9] 2024-09-28 09:02:55 +[x] [运行时间] 9.4166378974915 +``` + +> 主协程等待子协程,子协程交替运行,执行时间`9.4166378974915`秒。 diff --git a/docs/doc/custom.md b/docs/doc/custom.md new file mode 100644 index 0000000..ee4f2a4 --- /dev/null +++ b/docs/doc/custom.md @@ -0,0 +1,89 @@ +## 自定义开发 + +`webman-coroutine`提供了用于让自己的自定义服务/进程协程化的基础工具 + +### 1. 自定义协程驱动 + +1. 实现`Workbunny\WebmanCoroutine\Handlers\HandlerInterface`接口,实现自定义协程处理逻辑 +2. 通过`Workbunny\WebmanCoroutine\Factory::register(HandlerInterface $handler)`注册你的协程处理器 +3. 修改`config/server.php`中`'event_loop' => {你的事件循环类}` +4. 启动`CoroutineWebServer` 接受处理协程请求 + +> 注:`\Workbunny\WebmanCoroutine\event_loop()`自动判断加载顺序按`\Workbunny\WebmanCoroutine\Factory::$_handlers`的顺序执行`available()`择先 + +> 注:因为`eventLoopClass`与`HandlerClass`是一一对应的,所以建议不管是否存在相同的事件循环或者相同的处理器都需要继承后重命名 + + +### 2. 自定义进程协程化 + +> 注:考虑到 webman 框架默认不会启用注解代理,所以这里没有使用注解代理来处理协程化代理 + +#### 1. Worker 协程化 + +假设我们已经存在一个自定义服务类,如`MyProcess.php` + +```php +namespace process; + +class MyProcess { + public function onWorkerStart() { + // 具体业务逻辑 + } + // ... +} +``` + +在`webman/workerman`环境中,`onWorkerStart()`是一个 worker 进程所必不可少的方法, +假设我们想要将它协程化,在不改动`MyProcess`的情况下,只需要新建一个`MyCoroutineProcess.php` + +```php +namespace process; + +use Workbunny\WebmanCoroutine\CoroutineWorkerInterface; +use Workbunny\WebmanCoroutine\CoroutineWorkerMethods; + +class MyCoroutineProcess extends MyProcess implements CoroutineWorkerInterface { + + // 引入协程代理方法 + use CoroutineWorkerMethods; +} +``` + +此时的`MyCoroutineProcess`将拥有协程化的`onWorkerStart()`,将新建的`MyCoroutineProcess`添加到 webman 的自定义进程配置`config/process.php`中启动即可 + +#### 2. Server 协程化 + +> 代码样例:[CoroutineWebServer.php](src%2FCoroutineWebServer.php) + +假设我们已经存在一个自定义服务类,如`MyServer.php` + +```php +namespace process; + +class MyServer { + + public function onMessage($connection, $data) { + // 具体业务逻辑 + } + + // ... +} +``` + +在`webman/workerman`环境中,`onMessage()`是一个具备监听能力的进程所必不可少的方法,假设我们想要将它协程化,在不改动`MyServer`的情况下,只需要新建一个`MyCoroutineServer.php` + +```php +namespace process; + +use Workbunny\WebmanCoroutine\CoroutineServerInterface; +use Workbunny\WebmanCoroutine\CoroutineServerMethods; + +class MyCoroutineServer extends MyServer implements CoroutineServerInterface { + + // 引入协程代理方法 + use CoroutineServerMethods; +} +``` + +此时的`MyCoroutineServer`将拥有协程化的`onMessage()`,将新建的`MyCoroutineServer`添加到 webman 的自定义进程配置`config/process.php`中启动即可 +