pe / component-loop
There is no license information available for the latest version (v1.1.0) of this package.
Timers loop
v1.1.0
2022-07-23 11:48 UTC
Requires
- php: ^7.4
- psr/log: ^1.1
Requires (Dev)
- phpunit/phpunit: ~9.0
This package is auto-updated.
Last update: 2024-10-23 16:23:08 UTC
README
The following versions of PHP are supported.
- PHP 7.4+
Installation
To install, use composer:
php composer.phar require pe/component-loop
Usage
Loop used for run some callable delayed or repeated, example:
namespace PE\Component\Loop; $loop = new Loop(); // For delayed run callable add singular timer $loop->addSingularTimer(0.1, static function (Loop $loop, Timer $timer) { // Do some work delayed by 0.1 second }); // For repeated run callable add periodic timer $loop->addPeriodicTimer(0.5, static function (Loop $loop, Timer $timer) { // Do some work at each 0.5 second }); // For stop loop execution you may add special timer $loop->addSingularTimer(60, static function (Loop $loop) { $loop->stop(); }); // Run loop $loop->run();