public function __construct(Ezer_BusinessProcessServer $server, $php_exe, $handlerPath = null)
 {
     if (is_null($handlerPath)) {
         $handlerPath = dirname(__FILE__) . '/Ezer_BusinessProcessHandler.php';
     }
     Ezer_Log::log("Handler Path [{$handlerPath}]");
     parent::__construct($server, $handlerPath, $php_exe);
 }
Пример #2
0
 public function __construct(SocketCountServer $server, $php_exe)
 {
     parent::__construct($server, 'CountHandler.php', $php_exe);
 }
 public function __construct(Ezer_BusinessProcessServer $server, $php_exe)
 {
     parent::__construct($server, dirname(__FILE__) . '/Ezer_BusinessProcessHandler.php', $php_exe);
 }