2016-08-22 06:40:48 +02:00
|
|
|
<?php declare(strict_types = 1);
|
2015-08-27 16:10:08 +02:00
|
|
|
|
2016-08-18 18:04:48 +02:00
|
|
|
namespace Amp\Concurrent\Worker;
|
|
|
|
|
|
|
|
use Amp\Concurrent\Forking\Fork;
|
|
|
|
use Amp\Concurrent\Worker\Internal\TaskRunner;
|
|
|
|
use Interop\Async\Awaitable;
|
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() {
|
|
|
|
parent::__construct(new Fork(function (): Awaitable {
|
|
|
|
$runner = new TaskRunner($this, new BasicEnvironment);
|
|
|
|
return $runner->run();
|
2015-08-27 16:10:08 +02:00
|
|
|
}));
|
|
|
|
}
|
|
|
|
}
|