Ejemplo n.º 1
0
Archivo: Http.php Proyecto: vucms/aha
 protected function _initEvents()
 {
     parent::_initEvents();
     $this->_objServer->on('request', array($this, 'onRequest'));
     $this->_objServer->on('close', array($this, 'onClose'));
     return $this;
 }
Ejemplo n.º 2
0
Archivo: Udp.php Proyecto: vucms/aha
 protected function _initEvents()
 {
     parent::_initEvents();
     //UDP
     $this->_objServer->on('packet', array($this, 'onPacket'));
     return $this;
 }