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