MCPcopy Create free account
hub / github.com/acl-dev/acl / vformat_put

Method vformat_put

lib_acl_cpp/src/beanstalk/beanstalk.cpp:316–323  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

314}
315
316unsigned long long beanstalk::vformat_put(const char* fmt, va_list ap,
317 unsigned pri /* = 1024 */, unsigned delay /* = 0 */,
318 unsigned ttr /* = 60 */)
319{
320 string buf;
321 buf.vformat(fmt, ap);
322 return put(buf.c_str(), buf.length(), pri, delay, ttr);
323}
324
325unsigned long long beanstalk::format_put(const char* fmt, ...)
326{

Callers

nothing calls this directly

Calls 3

vformatMethod · 0.45
c_strMethod · 0.45
lengthMethod · 0.45

Tested by

no test coverage detected