1
0
mirror of https://github.com/danog/loop.git synced 2024-12-02 09:17:51 +01:00
loop/examples/2. Advanced/SignalLoop.php
2022-12-24 17:24:51 +01:00

65 lines
1.2 KiB
PHP

<?php declare(strict_types=1);
require 'vendor/autoload.php';
use Amp\Loop;
use danog\Loop\SignalLoop;
use function Amp\async;
use function Amp\delay;
class SigLoop extends SignalLoop
{
/**
* Loop name.
*
* @var string
*/
private $name;
/**
* Constructor.
*
* @param string $name Loop name
*/
public function __construct(string $name)
{
$this->name = $name;
}
/**
* Main loop.
*/
public function loop(): void
{
$number = 0;
while (true) {
if ($this->waitSignal(async(delay(...), 1))) {
echo "Got exit signal in $this!".PHP_EOL;
return;
}
echo "$this: $number".PHP_EOL;
$number++;
}
}
/**
* Get loop name.
*/
public function __toString(): string
{
return $this->name;
}
}
/** @var SigLoop[] */
$loops = [];
for ($x = 0; $x < 10; $x++) {
$loop = new SigLoop("Loop number $x");
$loop->start();
delay(0.1);
$loops []= $loop;
}
delay(5);
echo "Closing all loops!".PHP_EOL;
foreach ($loops as $loop) {
$loop->signal(true);
}