You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nnet/serialize/serializer.go

20 lines
341 B
Go

package serialize
type (
// Marshaler 序列化
Marshaler interface {
Marshal(v interface{}) ([]byte, error)
}
// Unmarshaler 反序列化
Unmarshaler interface {
Unmarshal(data []byte, v interface{}) error
}
// Serializer 消息 序列化/反序列化仅针对payload
Serializer interface {
Marshaler
Unmarshaler
}
)