parallel/lib/Worker/WorkerFork.php

20 lines
490 B
PHP
Raw Normal View History

2016-08-21 23:40:48 -05:00
<?php declare(strict_types = 1);
2015-08-27 09:10:08 -05:00
2016-08-23 16:47:40 -05:00
namespace Amp\Parallel\Worker;
2016-08-18 11:04:48 -05:00
2016-08-23 16:47:40 -05:00
use Amp\Parallel\Forking\Fork;
use Amp\Parallel\Worker\Internal\TaskRunner;
2016-08-18 11:04:48 -05:00
use Interop\Async\Awaitable;
2015-08-27 09:10:08 -05:00
/**
* A worker thread that executes task objects.
*/
2016-08-18 11:04:48 -05:00
class WorkerFork extends AbstractWorker {
public function __construct() {
parent::__construct(new Fork(function (): Awaitable {
$runner = new TaskRunner($this, new BasicEnvironment);
return $runner->run();
2015-08-27 09:10:08 -05:00
}));
}
}