(key string)
| 323 | } |
| 324 | |
| 325 | func (c *RawBinaryClient) receiveGetResponse(key string) GetResponse { |
| 326 | var flags uint32 |
| 327 | status, version, _, value, err := c.receiveResponse(opGet, &flags) |
| 328 | if err != nil { |
| 329 | return NewGetErrorResponse(key, err) |
| 330 | } |
| 331 | return NewGetResponse(key, status, flags, value, version) |
| 332 | } |
| 333 | |
| 334 | // See Client interface for documentation. |
| 335 | func (c *RawBinaryClient) Get(key string) GetResponse { |
no test coverage detected