experimental codec branch
This commit is contained in:
12
codec/codec.go
Normal file
12
codec/codec.go
Normal file
@@ -0,0 +1,12 @@
|
||||
package codec
|
||||
|
||||
// Codec used to encode and decode request/responses
|
||||
type Codec interface {
|
||||
// Marshal returns the wire format of v.
|
||||
Marshal(v interface{}) ([]byte, error)
|
||||
// Unmarshal parses the wire format into v.
|
||||
Unmarshal(data []byte, v interface{}) error
|
||||
// String returns the name of the Codec implementation. The returned
|
||||
// string will be used as part of content type in transmission.
|
||||
String() string
|
||||
}
|
||||
Reference in New Issue
Block a user