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

16 lines
377 B
PHP
Raw Normal View History

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