1
0
mirror of https://github.com/danog/amp.git synced 2024-12-04 18:38:17 +01:00
amp/examples/pipeline/backpressure.php

39 lines
1.1 KiB
PHP
Raw Normal View History

2020-05-13 17:15:21 +02:00
#!/usr/bin/env php
<?php
require __DIR__ . '/../../vendor/autoload.php';
use Amp\Delayed;
2020-08-23 16:18:28 +02:00
use Amp\PipelineSource;
2020-09-25 05:14:58 +02:00
use Amp\Promise;
use function Amp\async;
use function Amp\await;
use function Amp\sleep;
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;
$pipeline = $source->pipe();
2020-05-13 17:15:21 +02:00
2020-09-25 05:14:58 +02:00
Promise\rethrow(async(function (PipelineSource $source): void {
$source->yield(await(new Delayed(500, 1)));
$source->yield(await(new Delayed(1500, 2)));
$source->yield(await(new Delayed(1000, 3)));
$source->yield(await(new Delayed(2000, 4)));
$source->yield(5);
$source->yield(6);
$source->yield(7);
$source->yield(await(new Delayed(2000, 8)));
$source->yield(9);
$source->yield(10);
2020-09-25 05:14:58 +02:00
$source->complete();
}, $source));
2020-05-13 17:15:21 +02:00
2020-09-25 05:14:58 +02:00
while (null !== $value = $pipeline->continue()) {
\printf("Pipeline source yielded %d\n", $value);
sleep(500); // Listener consumption takes 500 ms.
2020-05-13 17:15:21 +02:00
}
2020-09-25 05:14:58 +02:00
} catch (\Exception $exception) {
\printf("Exception: %s\n", (string) $exception);
}