mirror of
https://github.com/danog/parallel.git
synced 2024-11-26 20:34:40 +01:00
20 lines
514 B
PHP
Executable File
20 lines
514 B
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
require dirname(__DIR__).'/vendor/autoload.php';
|
|
|
|
use Amp\Parallel\Worker\DefaultWorkerFactory;
|
|
use Amp\Parallel\Example\BlockingTask;
|
|
|
|
Amp\Loop::run(function () {
|
|
$factory = new DefaultWorkerFactory();
|
|
|
|
$worker = $factory->create();
|
|
$worker->start();
|
|
|
|
$result = yield $worker->enqueue(new BlockingTask('file_get_contents', 'https://google.com'));
|
|
printf("Read %d bytes\n", strlen($result));
|
|
|
|
$code = yield $worker->shutdown();
|
|
printf("Code: %d\n", $code);
|
|
});
|