MCPcopy Create free account
hub / github.com/dropbox/godropbox / receiveMutateResponse

Method receiveMutateResponse

memcache/raw_binary_client.go:431–440  ·  view source on GitHub ↗
(
	code opCode,
	key string)

Source from the content-addressed store, hash-verified

429}
430
431func (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.
443func (c *RawBinaryClient) mutate(code opCode, item *Item) MutateResponse {

Callers 7

mutateMethod · 0.95
mutateMultiMethod · 0.95
ReplaceMethod · 0.95
DeleteMethod · 0.95
DeleteMultiMethod · 0.95
AppendMethod · 0.95
PrependMethod · 0.95

Calls 3

receiveResponseMethod · 0.95
NewMutateErrorResponseFunction · 0.85
NewMutateResponseFunction · 0.85

Tested by

no test coverage detected