zobzn/batcher

Perform batch operations

0.1.0 2016-07-24 15:03 UTC

This package is not auto-updated.

Last update: 2024-04-25 00:21:07 UTC


README

Build Status Software License

Perform batch operations

Installation

composer require zobzn/batcher

Basic Usage

require_once __DIR__ . '/vendor/autoload.php';

$batcher = new \Zobzn\Batcher(30, function (array $items) {
    var_export($items);
});

for ($i = 0; $i < 100; $i++) {
    $batcher->add($i);
}

$batcher->finish();