2017 © Pedro Peláez
 

library react-child-process-closure

Run closures in ReactPHP Child Processes

image

wyrihaximus/react-child-process-closure

Run closures in ReactPHP Child Processes

  • Sunday, July 16, 2017
  • by WyriHaximus
  • Repository
  • 1 Watchers
  • 3 Stars
  • 421 Installations
  • PHP
  • 3 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 71 % Grown

The README.md

ReactPHP Child Process Messenger/Pool Closure child class

Linux Build Status Latest Stable Version Total Downloads Code Coverage License PHP 7 ready, (*1)

Run closures in a child process messenger or pool, (*2)

Installation

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

composer require wyrihaximus/react-child-process-closure 

Usage

Run a closure on the child process and get the results. (Note that results have to be a JSON serializable array.), (*4)

use React\EventLoop\Factory as EventLoopFactory;
use WyriHaximus\React\ChildProcess\Closure\ClosureChild;
use WyriHaximus\React\ChildProcess\Closure\MessageFactory;
use WyriHaximus\React\ChildProcess\Messenger\Factory as MessengerFactory;
use WyriHaximus\React\ChildProcess\Messenger\Messages\Payload;
use WyriHaximus\React\ChildProcess\Messenger\Messenger;

$loop = EventLoopFactory::create();

MessengerFactory::parentFromClass(ClosureChild::class, $loop)->then(function (Messenger $messenger) use ($loop) {
    $messenger->rpc(MessageFactory::rpc(function () {
        return resolve(['time' => time()]);
    })->done(function (Payload $payload) {
        echo 'Time in the child process: ', $payload['time'], PHP_EOL;
    });
});

$loop->run();

The usage example above also works with wyrihaximus/react-child-process-pool, just be sure to use WyriHaximus\React\ChildProcess\Closure\MessageFactory to create the RPC messages as shown in the example., (*5)

Examples

For more examples see the examples directory, (*6)

Contributing

Please see CONTRIBUTING for details., (*7)

License

Copyright 2017 Cees-Jan Kiewiet, (*8)

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:, (*9)

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

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., (*11)

The Versions

16/07 2017

dev-master

9999999-dev

Run closures in ReactPHP Child Processes

  Sources   Download

MIT

The Requires

 

The Development Requires

28/05 2017

1.0.0

1.0.0.0

Run closures in ReactPHP Child Processes

  Sources   Download

MIT

The Requires

 

The Development Requires