voryx/pool-poretni-cnysa-tcaer

0.0.1 2016-12-22 16:52 UTC

This package is auto-updated.

Last update: 2024-03-19 08:34:29 UTC


README

This library allows you use any async-interop loop with any library that requires the ReactPHP loop.

note: When all ReactPHP projects support the interop loop, this library will no longer be necessary.

Example

    //Create your async-interop loop
    
    $loop = new \Voryx\React\AsyncInterop\Loop();
    
    //Then use your ReactPHP loop like you normally would
    
    $client = stream_socket_client('tcp://127.0.0.1:1337');
    $conn = new React\Stream\Stream($client, $loop);
    $conn->pipe(new React\Stream\Stream(STDOUT, $loop));
    $conn->write("Hello World!\n");
    
    $loop->run();