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

16 lines
381 B
PHP
Raw Normal View History

2016-08-22 06:40:48 +02:00
<?php declare(strict_types = 1);
2015-08-25 07:08:17 +02:00
2016-08-18 18:04:48 +02:00
namespace Amp\Concurrent\Worker;
use Amp\Concurrent\Process\ChannelledProcess;
2015-08-25 07:08:17 +02:00
2015-08-27 16:10:08 +02:00
/**
* A worker thread that executes task objects.
*/
2016-08-18 18:04:48 +02:00
class WorkerProcess extends AbstractWorker {
public function __construct() {
2016-08-19 00:36:58 +02:00
$dir = \dirname(__DIR__, 2) . '/bin';
2016-08-23 01:25:19 +02:00
parent::__construct(new ChannelledProcess($dir . '/worker', $dir));
2015-08-25 07:08:17 +02:00
}
2015-08-27 16:10:08 +02:00
}