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.
24 lines
765 B
24 lines
765 B
// Package ziface 主要提供zinx全部抽象层接口定义.
|
|
// 包括:
|
|
// IServer 服务mod接口
|
|
// IRouter 路由mod接口
|
|
// IConnection 连接mod层接口
|
|
// IMessage 消息mod接口
|
|
// IDataPack 消息拆解接口
|
|
// IMsgHandler 消息处理及协程池接口
|
|
//
|
|
// 当前文件描述:
|
|
// @Title irequest.go
|
|
// @Description 提供连接请求全部接口声明
|
|
// @Author Aceld - Thu Mar 11 10:32:29 CST 2019
|
|
package ziface
|
|
|
|
/*
|
|
IRequest 接口:
|
|
实际上是把客户端请求的链接信息 和 请求的数据 包装到了 Request里
|
|
*/
|
|
type IRequest interface {
|
|
GetConnection() IConnection //获取请求连接信息
|
|
GetData() []byte //获取请求消息的数据
|
|
GetMsgID() uint32 //获取请求的消息ID
|
|
}
|