( code opCode, key string)
| 429 | } |
| 430 | |
| 431 | func (c *RawBinaryClient) receiveMutateResponse( |
| 432 | code opCode, |
| 433 | key string) MutateResponse { |
| 434 | |
| 435 | status, version, _, _, err := c.receiveResponse(code) |
| 436 | if err != nil { |
| 437 | return NewMutateErrorResponse(key, err) |
| 438 | } |
| 439 | return NewMutateResponse(key, status, version) |
| 440 | } |
| 441 | |
| 442 | // Perform a mutation operation specified by the given code. |
| 443 | func (c *RawBinaryClient) mutate(code opCode, item *Item) MutateResponse { |
no test coverage detected