2020-05-13 17:15:21 +02:00
|
|
|
#!/usr/bin/env php
|
|
|
|
<?php
|
|
|
|
|
|
|
|
require __DIR__ . '/../../vendor/autoload.php';
|
|
|
|
|
|
|
|
use Amp\Loop;
|
2020-09-25 05:14:58 +02:00
|
|
|
use Amp\Pipeline;
|
2020-08-23 16:18:28 +02:00
|
|
|
use Amp\PipelineSource;
|
2020-10-07 06:40:14 +02:00
|
|
|
use function Amp\delay;
|
2020-05-13 17:15:21 +02:00
|
|
|
|
2020-09-25 05:14:58 +02:00
|
|
|
try {
|
|
|
|
/** @psalm-var PipelineSource<int> $source */
|
|
|
|
$source = new PipelineSource;
|
2020-05-13 17:15:21 +02:00
|
|
|
|
2020-09-25 05:14:58 +02:00
|
|
|
Loop::defer(function () use ($source): void {
|
|
|
|
// Source emits all values at once without awaiting back-pressure.
|
|
|
|
$source->emit(1);
|
|
|
|
$source->emit(2);
|
|
|
|
$source->emit(3);
|
|
|
|
$source->emit(4);
|
|
|
|
$source->emit(5);
|
|
|
|
$source->emit(6);
|
|
|
|
$source->emit(7);
|
|
|
|
$source->emit(8);
|
|
|
|
$source->emit(9);
|
|
|
|
$source->emit(10);
|
|
|
|
$source->complete();
|
|
|
|
});
|
2020-05-13 17:15:21 +02:00
|
|
|
|
2020-09-25 05:14:58 +02:00
|
|
|
$pipeline = $source->pipe();
|
2020-05-13 17:15:21 +02:00
|
|
|
|
2020-09-25 05:14:58 +02:00
|
|
|
// Use Amp\Pipeline\toIterator() to use a pipeline with foreach.
|
2020-11-10 19:05:47 +01:00
|
|
|
foreach ($pipeline as $value) {
|
2020-09-25 05:14:58 +02:00
|
|
|
\printf("Pipeline source yielded %d\n", $value);
|
2020-10-07 06:40:14 +02:00
|
|
|
delay(100); // Listener consumption takes 100 ms.
|
2020-05-13 17:15:21 +02:00
|
|
|
}
|
2020-09-25 05:14:58 +02:00
|
|
|
} catch (\Throwable $exception) {
|
|
|
|
\printf("Exception: %s\n", (string) $exception);
|
|
|
|
}
|
|
|
|
|