Skip to content

LeeShan87/reactphp-multi-loop

Repository files navigation

LeeShan87/reactphp-multi-loop

CI status installs on Packagist

Manage multiple LoopInterfaces easily when writing tests.

Quickstart example

$loop1 = Factory::create();
$loop1->futureTick(function(){
    echo 'hello ';
});
MultiLoop::addLoop($loop1, 'loop1');
$loop2 = Factory::create();
$loop2->futureTick(function (){
    echo 'world!';
});
MultiLoop::addLoop($loop1, 'loop2');
MultiLoop::tickAll();

Install

The recommended way to install this library is through Composer. New to Composer?

This will install the latest supported version:

$ composer require leeshan87/reactphp-multi-loop:^0.1

See also the CHANGELOG for details about version upgrades.

This project aims to run on any platform and thus does not require any PHP extensions and supports running on legacy PHP 5.3 through current PHP 8+. It's highly recommended to use PHP 7+ for this project.

Tests

To run the test suite, you first need to clone this repo and then install all dependencies through Composer:

$ composer install

To run the test suite, go to the project root and run:

$ php vendor/bin/phpunit

License

MIT

About

Helps you to manage multiple ReactPHP eventloops

Topics

Resources

License

Stars

Watchers

Forks

Sponsor this project

Packages

No packages published

Languages