1
0
mirror of https://github.com/danog/amp.git synced 2024-12-04 02:17:54 +01:00
amp/examples/iterators/producer.php

34 lines
904 B
PHP
Raw Normal View History

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