2017 © Pedro Peláez
 

library bulrush

image

eclogue/bulrush

  • Saturday, January 20, 2018
  • by superbogy
  • Repository
  • 1 Watchers
  • 1 Stars
  • 78 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Bulrush

In the meanwhile I smile and I sing all alone. In the meanwhile the air is filling with the perfume of promise., (*1)

overview

php coroutine control flow. High performance yield handlers. 

Install

`composer require eclogue/bulrush`

Usage

use Bulrush\Scheduler;

function gen () {
    $url = 'https://github.com/eclogue/bulrush';
    $response = yield file_get_contents($url);

    return $response;
}

$scheduler = new Scheduler();
$scheduler->add(gen());
$scheduler->run();

The Versions

20/01 2018

dev-master

9999999-dev

  Sources   Download

by mulberry10