You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
314 B

  1. package ziface
  2. /*
  3. IRequest 接口
  4. 实际上是把客户端请求的链接信息 请求的数据 包装到了 Request里
  5. */
  6. type IRequest interface{
  7. GetConnection() IConnection //获取请求连接信息
  8. GetData() []byte //获取请求消息的数据
  9. GetMsgID() uint32 //获取请求的消息ID
  10. }