wyrihaximus/recoil-queue-caller

Call all callables from the observable from within a RecoilPHP coroutine

2.1.1 2019-01-01 21:39 UTC

README

Build Status Latest Stable Version Total Downloads Code Coverage License PHP 7 ready

Install

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

composer require WyriHaximus/recoil-queue-caller

The purpose of this package is to run all given callables inside a coroutine.

Usage

The following example echo's 0123:

$queueCaller = new QueueCaller($recoil);
$observable = observableFromArray(iterator_to_array((function () {
    $func = function ($a, $b) {
        echo $a + $b;
    };
    yield new Call($func, 0, 0);
    yield new Call($func, 0, 1);
    yield new Call($func, 1, 1);
    yield new Call($func, 1, 2);
})()));
$queueCaller->call($observable);

It is also possible to communicate results back:

$call = new Call(function ($a, $b) {
    return $a + $b;
}, 1, 2);
$call->wait(function ($result) {
    echo $result; // Echo's 3
});

$queueCaller = new QueueCaller($recoil);
$observable = observableFromArray([$call]);
$queueCaller->call($observable);

License

The MIT License (MIT)

Copyright (c) 2018 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.