2015-08-25 00:08:17 -05:00
|
|
|
<?php
|
|
|
|
|
2016-08-18 11:04:48 -05:00
|
|
|
namespace Amp\Concurrent\Worker;
|
|
|
|
|
|
|
|
use Amp\Concurrent\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() {
|
|
|
|
$dir = \dirname(\dirname(__DIR__)) . '/bin';
|
2015-10-19 18:07:20 -05:00
|
|
|
parent::__construct(new ChannelledProcess($dir . '/worker.php', $dir));
|
2015-08-25 00:08:17 -05:00
|
|
|
}
|
2015-08-27 09:10:08 -05:00
|
|
|
}
|