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

Method FormatError

src/brpc/redis_reply.h:234–239  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

232 return SetStringImpl(str, REDIS_REPLY_ERROR);
233}
234inline void RedisReply::FormatError(const char* fmt, ...) {
235 va_list ap;
236 va_start(ap, fmt);
237 FormatStringImpl(fmt, ap, REDIS_REPLY_ERROR);
238 va_end(ap);
239}
240
241inline void RedisReply::SetInteger(int64_t value) {
242 if (_type != REDIS_REPLY_NIL) {

Callers 4

RunMethod · 0.80
RunMethod · 0.80
RunMethod · 0.80
RunMethod · 0.80

Calls

no outgoing calls

Tested by 1

RunMethod · 0.64