mirror of
https://github.com/danog/file.git
synced 2024-11-26 11:54:54 +01:00
24 lines
447 B
PHP
24 lines
447 B
PHP
<?php
|
|
|
|
namespace Amp\File\Test;
|
|
|
|
use Amp\File;
|
|
use Amp\Loop;
|
|
use Amp\Parallel\Worker\DefaultPool;
|
|
use function Amp\call;
|
|
|
|
class ParallelDriverTest extends DriverTest
|
|
{
|
|
protected function execute(callable $cb)
|
|
{
|
|
Loop::run(function () use ($cb) {
|
|
$pool = new DefaultPool;
|
|
|
|
File\filesystem(new File\ParallelDriver($pool));
|
|
yield call($cb);
|
|
|
|
yield $pool->shutdown();
|
|
});
|
|
}
|
|
}
|