1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-11 16:49:51 +01:00
parallel/lib/Worker/WorkerFork.php

20 lines
458 B
PHP
Raw Normal View History

2016-12-30 02:16:04 +01:00
<?php
2015-08-27 16:10:08 +02:00
2016-08-23 23:47:40 +02:00
namespace Amp\Parallel\Worker;
2016-08-18 18:04:48 +02:00
2016-08-23 23:47:40 +02:00
use Amp\Parallel\Forking\Fork;
use Amp\Parallel\Worker\Internal\TaskRunner;
use AsyncInterop\Promise;
2015-08-27 16:10:08 +02:00
/**
* A worker thread that executes task objects.
*/
2016-08-18 18:04:48 +02:00
class WorkerFork extends AbstractWorker {
public function __construct() {
2016-11-15 00:43:44 +01:00
parent::__construct(new Fork(function (): Promise {
2016-08-18 18:04:48 +02:00
$runner = new TaskRunner($this, new BasicEnvironment);
return $runner->run();
2015-08-27 16:10:08 +02:00
}));
}
}