go-study/zinx/ziface/irequest.go
2025-09-14 15:52:04 +08:00

11 lines
224 B
Go

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