1
0
mirror of https://github.com/danog/loop.git synced 2024-12-11 16:59:46 +01:00
loop/examples/2. Advanced/ResumableSignalLoop.php

76 lines
1.5 KiB
PHP
Raw Normal View History

2020-07-21 22:12:34 +02:00
<?php
require 'vendor/autoload.php';
use Amp\Loop;
2020-07-22 18:18:57 +02:00
use danog\Loop\ResumableSignalLoop;
2020-07-21 22:12:34 +02:00
use function Amp\delay;
2020-07-22 18:18:57 +02:00
class ResSigLoop extends ResumableSignalLoop
2020-07-21 22:12:34 +02:00
{
/**
* Loop name.
*
* @var string
*/
private $name;
/**
* Constructor.
*
* @param string $name Loop name
*/
2020-07-22 18:18:57 +02:00
public function __construct(string $name)
2020-07-21 22:12:34 +02:00
{
$this->name = $name;
}
/**
* Main loop.
*
* @return \Generator
*/
public function loop(): \Generator
{
$number = 0;
2020-07-22 18:18:57 +02:00
while (true) {
if (yield $this->waitSignal($this->pause(1))) {
echo "Got exit signal in $this!".PHP_EOL;
return;
}
2020-07-21 22:12:34 +02:00
echo "$this: $number".PHP_EOL;
2020-07-22 18:18:57 +02:00
$number++;
2020-07-21 22:12:34 +02:00
}
}
/**
* Get loop name.
*
* @return string
*/
public function __toString(): string
{
return $this->name;
}
}
Loop::run(function () {
2020-07-22 18:18:57 +02:00
/** @var ResSigLoop[] */
2020-07-21 22:12:34 +02:00
$loops = [];
for ($x = 0; $x < 10; $x++) {
2020-07-22 18:18:57 +02:00
$loop = new ResSigLoop("Loop number $x");
2020-07-21 22:12:34 +02:00
$loop->start();
yield delay(100);
$loops []= $loop;
}
yield delay(5000);
2020-07-22 18:18:57 +02:00
echo "Resuming prematurely all loops!".PHP_EOL;
foreach ($loops as $loop) {
$loop->resume();
}
echo "OK done, waiting 5 more seconds!".PHP_EOL;
yield delay(5000);
echo "Closing all loops!".PHP_EOL;
2020-07-21 22:12:34 +02:00
foreach ($loops as $loop) {
2020-07-22 18:18:57 +02:00
$loop->signal(true);
2020-07-21 22:12:34 +02:00
}
});