You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
379 B
14 lines
379 B
package ziface
|
|
|
|
/*
|
|
将请求的一个消息封装到message中,定义抽象层接口
|
|
*/
|
|
type IMessage interface {
|
|
GetDataLen() uint32 //获取消息数据段长度
|
|
GetMsgID() uint32 //获取消息ID
|
|
GetData() []byte //获取消息内容
|
|
|
|
SetMsgID(uint32) //设计消息ID
|
|
SetData([]byte) //设计消息内容
|
|
SetDataLen(uint32) //设置消息数据段长度
|
|
}
|