Encoder defines the interface of a RESP encoder
| 2 | |
| 3 | // Encoder defines the interface of a RESP encoder |
| 4 | type Encoder interface { |
| 5 | Error(s string) error |
| 6 | SimpleString(s string) error |
| 7 | BulkString(s string) error |
| 8 | NullBulkString() error |
| 9 | Integer(v int64) error |
| 10 | Array(size int) error |
| 11 | } |
| 12 | |
| 13 | //Decoder defines the interface of a RESP decoder |
| 14 | type Decoder interface { |
no outgoing calls
no test coverage detected