([]byte)
| 8 | // Codec allows KV clients to serialise and deserialise values. |
| 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. |
no outgoing calls