11 lines
224 B
Go
11 lines
224 B
Go
package ziface
|
|
|
|
type IRequest interface {
|
|
// GetConnection 获取请求连接信息
|
|
GetConnection() IConnection
|
|
// GetMsgID 获取请求消息ID
|
|
GetMsgID() uint32
|
|
// GetData 获取请求消息数据
|
|
GetData() []byte
|
|
}
|