MCPcopy Create free account
hub / github.com/apache/brpc / popAppend

Method popAppend

src/brpc/couchbase.cpp:1469–1471  ·  view source on GitHub ↗

Warning: Not tested bool CouchbaseOperations::CouchbaseResponse::PopReplace(uint64_t* cas_value) { return popStore(policy::CB_BINARY_REPLACE, cas_value); }

Source from the content-addressed store, hash-verified

1467// return popStore(policy::CB_BINARY_REPLACE, cas_value);
1468// }
1469bool CouchbaseOperations::CouchbaseResponse::popAppend(uint64_t* cas_value) {
1470 return popStore(policy::CB_BINARY_APPEND, cas_value);
1471}
1472bool CouchbaseOperations::CouchbaseResponse::popPrepend(uint64_t* cas_value) {
1473 return popStore(policy::CB_BINARY_PREPEND, cas_value);
1474}

Callers 2

sendRequestFunction · 0.80
executePipelineMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected