zinx/ziface/irequest.go

17 lines
225 B
Go
Raw Permalink Normal View History

2024-05-29 10:05:56 +00:00
package ziface
/**
*/
type IRequest interface {
//获取连接
GetConnection() IConnection
//请求的消息数据
GetData() []byte
//获取请求消息的id
GetMsgId() uint32
}