(interface{})
| 9 | type Codec interface { |
| 10 | Decode([]byte) (interface{}, error) |
| 11 | Encode(interface{}) ([]byte, error) |
| 12 | |
| 13 | // CodecID is a short identifier to communicate what codec should be used to decode the value. |
| 14 | // Once in use, this should be stable to avoid confusing other clients. |
no outgoing calls