1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-04 18:47:50 +01:00
parallel/test/Context/Fixtures/delayed-process.php

9 lines
161 B
PHP
Raw Normal View History

<?php
use Amp\Delayed;
use Amp\Parallel\Sync\Channel;
return function (Channel $channel) use ($argv) {
yield new Delayed((int) ($argv[1] ?? 1) * 1000);
};