Ejemplo n.º 1
0
Archivo: ESL.php Proyecto: swk/bluebox
 function executeAsync($app, $arg = null, $uuid = null)
 {
     switch (func_num_args()) {
         case 1:
             $r = ESLconnection_executeAsync($this->_cPtr, $app);
             break;
         case 2:
             $r = ESLconnection_executeAsync($this->_cPtr, $app, $arg);
             break;
         default:
             $r = ESLconnection_executeAsync($this->_cPtr, $app, $arg, $uuid);
     }
     return $r;
 }
Ejemplo n.º 2
0
 function executeAsync($app, $arg = null, $uuid = null)
 {
     switch (func_num_args()) {
         case 1:
             $r = ESLconnection_executeAsync($this->_cPtr, $app);
             break;
         case 2:
             $r = ESLconnection_executeAsync($this->_cPtr, $app, $arg);
             break;
         default:
             $r = ESLconnection_executeAsync($this->_cPtr, $app, $arg, $uuid);
     }
     if (is_resource($r)) {
         $c = substr(get_resource_type($r), strpos(get_resource_type($r), '__') ? strpos(get_resource_type($r), '__') + 2 : 3);
         if (class_exists($c)) {
             return new $c($r);
         }
         return new ESLevent($r);
     }
     return $r;
 }