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