mirror of
https://github.com/danog/parallel.git
synced 2025-01-09 14:18:23 +01:00
9 lines
148 B
PHP
9 lines
148 B
PHP
<?php
|
|
|
|
use Amp\Delayed;
|
|
use Amp\Parallel\Sync\Channel;
|
|
|
|
return function (Channel $channel, int $time = 1) {
|
|
yield new Delayed($time * 1000);
|
|
};
|