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

16 lines
290 B
Go

package ziface
type IMessage interface {
// GetMsgID 获取消息ID
GetMsgID() uint32
// GetDataLen 获取消息长度
GetDataLen() uint32
// GetData 获取消息内容
GetData() []byte
// SetMsgID 设置消息ID
SetMsgID(uint32)
// SetData 设置消息内容
SetData([]byte)
}