micro/transport/codec/codec.go
2016-12-06 18:56:57 +00:00

11 lines
301 B
Go

package codec
// Codec is used for encoding where the transport doesn't natively support
// headers in the message type. In this case the entire message is
// encoded as the payload
type Codec interface {
Marshal(interface{}) ([]byte, error)
Unmarshal([]byte, interface{}) error
String() string
}