1
0
mirror of https://github.com/danog/amp.git synced 2024-11-26 20:15:00 +01:00
amp/examples/iterators/producer.php
2017-11-29 13:36:50 +01:00

34 lines
906 B
PHP

#!/usr/bin/env php
<?php
require __DIR__ . '/../../vendor/autoload.php';
use Amp\Delayed;
use Amp\Loop;
use Amp\Producer;
Loop::run(function () {
try {
$iterator = new Producer(function (callable $emit) {
yield $emit(1);
yield $emit(new Delayed(500, 2));
yield $emit(3);
yield $emit(new Delayed(300, 4));
yield $emit(5);
yield $emit(6);
yield $emit(new Delayed(1000, 7));
yield $emit(8);
yield $emit(9);
yield $emit(new Delayed(600, 10));
return 11;
});
while (yield $iterator->advance()) {
\printf("Producer emitted %d\n", $iterator->getCurrent());
yield new Delayed(100); // Listener consumption takes 100 ms.
}
} catch (\Exception $exception) {
\printf("Exception: %s\n", $exception);
}
});