1
0
mirror of https://github.com/danog/amp.git synced 2024-12-03 18:07:57 +01:00
amp/examples/iterators/emitter.php

39 lines
994 B
PHP
Raw Normal View History

2016-05-24 18:47:14 +02:00
#!/usr/bin/env php
<?php
require __DIR__ . '/../../vendor/autoload.php';
2016-05-24 18:47:14 +02:00
use Amp\Delayed;
use Amp\Emitter;
use Amp\Loop;
Loop::run(function () {
2016-05-24 18:47:14 +02:00
try {
2017-01-04 02:10:27 +01:00
$emitter = new Emitter;
Loop::defer(function () use ($emitter) {
// Listener emits all values at once.
$emitter->emit(1);
$emitter->emit(2);
$emitter->emit(3);
$emitter->emit(4);
$emitter->emit(5);
$emitter->emit(6);
$emitter->emit(7);
$emitter->emit(8);
$emitter->emit(9);
$emitter->emit(10);
2017-04-27 17:51:06 +02:00
$emitter->complete();
2016-05-27 22:44:01 +02:00
});
2017-05-01 07:29:23 +02:00
$iterator = $emitter->iterate();
2016-05-27 22:44:01 +02:00
2017-04-27 17:51:06 +02:00
while (yield $iterator->advance()) {
\printf("Emitter emitted %d\n", $iterator->getCurrent());
yield new Delayed(100); // Listener consumption takes 100 ms.
}
} catch (\Throwable $exception) {
\printf("Exception: %s\n", (string) $exception);
2016-05-24 18:47:14 +02:00
}
});