mirror of
https://github.com/danog/parallel.git
synced 2025-01-22 22:11:11 +01:00
24 lines
598 B
PHP
Executable File
24 lines
598 B
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
require dirname(__DIR__).'/vendor/autoload.php';
|
|
|
|
use Icicle\Concurrent\Worker\DefaultWorkerFactory;
|
|
use Icicle\Coroutine;
|
|
use Icicle\Examples\Concurrent\BlockingTask;
|
|
use Icicle\Loop;
|
|
|
|
Coroutine\create(function () {
|
|
$factory = new DefaultWorkerFactory();
|
|
|
|
$worker = $factory->create();
|
|
$worker->start();
|
|
|
|
$result = yield from $worker->enqueue(new BlockingTask('file_get_contents', 'https://google.com'));
|
|
printf("Read %d bytes\n", strlen($result));
|
|
|
|
$code = yield from $worker->shutdown();
|
|
printf("Code: %d\n", $code);
|
|
})->done();
|
|
|
|
Loop\run();
|