1
0
mirror of https://github.com/danog/parallel.git synced 2025-01-23 06:21:12 +01:00
parallel/lib/Worker/WorkerThread.php

20 lines
457 B
PHP
Raw Normal View History

2016-12-29 19:16:04 -06:00
<?php
2016-08-23 16:47:40 -05:00
namespace Amp\Parallel\Worker;
2016-08-18 11:04:48 -05:00
use Amp\Promise;
2016-08-23 16:47:40 -05:00
use Amp\Parallel\Threading\Thread;
use Amp\Parallel\Worker\Internal\TaskRunner;
/**
* A worker thread that executes task objects.
*/
2016-08-18 11:04:48 -05:00
class WorkerThread extends AbstractWorker {
public function __construct() {
2016-11-14 17:43:44 -06:00
parent::__construct(new Thread(function (): Promise {
2016-08-18 11:04:48 -05:00
$runner = new TaskRunner($this, new BasicEnvironment);
return $runner->run();
2015-08-27 09:10:08 -05:00
}));
}
}