예제 #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;
 }