6dreams/parallel-pool

Presents parallel functionality as pool

1.1.4 2019-12-13 10:39 UTC

This package is auto-updated.

Last update: 2025-03-13 22:28:02 UTC


README

Provides simmular pool interface in parallel as pthreads.

Usage

$pool = new Pool(
    __DIR__ . '/bootstrap_or_autoloader.php',
    2,
    static function (ThreadConfigInterface $config) {
        echo $config->getId() . "\n";
    }
);

$pool->submit([]);
$pool->submit([]);
$pool->submit([]);
$pool->submit([]);
$pool->submit([]);

while ($pool->collect()) {
    \usleep(0);
}