()
| 6 | // IMessage Package ziface defines an abstract interface for encapsulating a request message into a message |
| 7 | type IMessage interface { |
| 8 | GetDataLen() uint32 // Gets the length of the message data segment(获取消息数据段长度) |
| 9 | GetMsgID() uint32 // Gets the ID of the message(获取消息ID) |
| 10 | GetData() []byte // Gets the content of the message(获取消息内容) |
| 11 | GetRawData() []byte // Gets the raw data of the message(获取原始数据) |
no outgoing calls