decodelabs/eventful
最新稳定版本:v0.4.6
Composer 安装命令:
composer require decodelabs/eventful
包简介
Asynchronous IO event dispatcher
README 文档
README
Asynchronous IO event dispatcher for PHP
Eventful provides an extensible IO event dispatcher for use in interactive and asynchronous processes.
Installation
This package requires PHP 8.4 or higher.
Install via Composer:
composer require decodelabs/eventful
Usage
Listen for events on IO, Signals and Timers and respond accordingly.
If php's Event extension is available, that will be used, otherwise a basic select() loop fills in the gaps.
use DecodeLabs\Deliverance; use DecodeLabs\Eventful\Factory; $broker = Deliverance::newCliBroker(); $eventLoop = Factory::newDispatcher() // Run every 2 seconds ->bindTimer('timer1', 2, function() use($broker) { $broker->writeLine('Timer 1'); }) // Listen for reads, but frozen - won't activate until unfrozen ->bindStreamReadFrozen($input = $broker->getFirstInputReceiver(), function() use($broker) { $broker->writeLine('You said: '.$broker->readLine()); }) // Run once after 1 second ->bindTimerOnce('timer2', 1, function($binding) use($broker, $input) { $broker->writeLine('Timer 2'); // Unfreeze io reads $binding->eventLoop->unfreeze($intput); }) // Check if we want to bail every second ->setCycleHandler(function(int $cycles) { if($cycles > 10) { return false; } }); /* Outputs something like: Timer 2 Timer 1 Timer 1 You said: Hello world Timer 1 */
Licensing
Eventful is licensed under the MIT License. See LICENSE for the full license text.
统计信息
- 总下载量: 18.2k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-03-18