1
0
mirror of https://github.com/danog/parallel.git synced 2024-11-26 20:34:40 +01:00
parallel/examples/worker.php

19 lines
496 B
PHP
Raw Normal View History

2015-09-28 05:46:57 +02:00
#!/usr/bin/env php
<?php
2018-10-07 16:50:45 +02:00
require \dirname(__DIR__).'/vendor/autoload.php';
2015-09-28 05:46:57 +02:00
2016-08-23 23:47:40 +02:00
use Amp\Parallel\Example\BlockingTask;
2017-05-18 09:51:31 +02:00
use Amp\Parallel\Worker\DefaultWorkerFactory;
2015-09-28 05:46:57 +02:00
Amp\Loop::run(function () {
2015-12-05 08:09:42 +01:00
$factory = new DefaultWorkerFactory();
2015-09-28 05:46:57 +02:00
$worker = $factory->create();
2016-08-18 18:04:48 +02:00
$result = yield $worker->enqueue(new BlockingTask('file_get_contents', 'https://google.com'));
2018-10-07 16:50:45 +02:00
\printf("Read %d bytes\n", \strlen($result));
2015-09-28 05:46:57 +02:00
2016-08-18 18:04:48 +02:00
$code = yield $worker->shutdown();
2018-10-07 16:50:45 +02:00
\printf("Code: %d\n", $code);
});