2015-08-25 07:08:17 +02:00
|
|
|
<?php
|
|
|
|
namespace Icicle\Concurrent\Worker;
|
|
|
|
|
2015-08-27 16:10:08 +02:00
|
|
|
use Icicle\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.
|
|
|
|
*/
|
2015-12-05 06:50:32 +01:00
|
|
|
class WorkerProcess extends AbstractWorker
|
2015-08-25 07:08:17 +02:00
|
|
|
{
|
|
|
|
public function __construct()
|
|
|
|
{
|
2015-08-27 16:10:08 +02:00
|
|
|
$dir = dirname(dirname(__DIR__)) . '/bin';
|
2015-10-20 01:07:20 +02:00
|
|
|
parent::__construct(new ChannelledProcess($dir . '/worker.php', $dir));
|
2015-08-25 07:08:17 +02:00
|
|
|
}
|
2015-08-27 16:10:08 +02:00
|
|
|
}
|