wyrihaximus/react-parallel-infinite-pool

This package is abandoned and no longer maintained. The author suggests using the react-parallel/infinite-pool package instead.

♾️ Infinite pool for bridging ext-parallel and ReactPHP

1.0.0 2019-12-25 16:23 UTC

This package is auto-updated.

Last update: 2020-11-29 11:39:12 UTC


README

Build Status Latest Stable Version Total Downloads License

ReactPHP bindings around ext-parallel-infinite-pool

Install

To install via Composer, use the command below, it will automatically detect the latest version and bind it with ~.

composer require wyrihaximus/react-parallel-infinite-pool 

Usage

The following example will spin up a thread with a 1 second TTL clean up policy. Meaning that threads are kept around for 1 second waiting for something to do before closed. It then runs a closure in the thread that will wait for one second before returning an message. Upon receiving that message the mean thread will echo out that message before closing the pool;

$loop = Factory::create();
$finite = new Infinite($loop, 1);
$finite->run(function () {
    sleep(1);

    return 'Hoi!';
})->then(function (string $message) use ($infinite) {
    echo $message, PHP_EOL;
    $infinite->close();
});
$loop->run();

License

Copyright 2019 Cees-Jan Kiewiet

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.