1
0
mirror of https://github.com/danog/parallel.git synced 2025-01-09 22:28:26 +01:00
parallel/test/Context/Fixtures/sleep-parallel.php

9 lines
148 B
PHP
Raw Normal View History

2019-02-14 07:56:27 +01:00
<?php
use Amp\Delayed;
2019-02-14 07:56:27 +01:00
use Amp\Parallel\Sync\Channel;
return function (Channel $channel, int $time = 1) {
yield new Delayed($time * 1000);
2019-02-14 07:56:27 +01:00
};