1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-02 17:52:14 +01:00
parallel/lib/Worker/WorkerThread.php

20 lines
498 B
PHP
Raw Normal View History

2016-08-22 06:40:48 +02:00
<?php declare(strict_types = 1);
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\Threading\Thread;
use Amp\Parallel\Worker\Internal\TaskRunner;
2016-08-18 18:04:48 +02:00
use Interop\Async\Awaitable;
/**
* A worker thread that executes task objects.
*/
2016-08-18 18:04:48 +02:00
class WorkerThread extends AbstractWorker {
public function __construct() {
parent::__construct(new Thread(function (): Awaitable {
$runner = new TaskRunner($this, new BasicEnvironment);
return $runner->run();
2015-08-27 16:10:08 +02:00
}));
}
}