Sha256: fe9441743f64f3e556e310e26725a0557d4c2ebe52d56a2b7ade0a54dceb1572
Contents?: true
Size: 1.96 KB
Versions: 6
Compression:
Stored size: 1.96 KB
Contents
/* * Copyright 2016 Couchbase, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef LCB_MCTX_HELPER_H #define LCB_MCTX_HELPER_H #include <libcouchbase/couchbase.h> namespace lcb { class MultiCmdContext : public lcb_MULTICMD_CTX { protected: virtual lcb_error_t MCTX_addcmd(const lcb_CMDBASE* cmd) = 0; virtual lcb_error_t MCTX_done(const void *cookie) = 0; virtual void MCTX_fail() = 0; #ifdef LCB_TRACING virtual void MCTX_setspan(lcbtrace_SPAN *span) = 0; #endif MultiCmdContext() { lcb_MULTICMD_CTX::addcmd = dispatch_mctx_addcmd; lcb_MULTICMD_CTX::done = dispatch_mctx_done; lcb_MULTICMD_CTX::fail = dispatch_mctx_fail; #ifdef LCB_TRACING lcb_MULTICMD_CTX::setspan = dispatch_mctx_setspan; #endif } virtual ~MultiCmdContext() {} private: static lcb_error_t dispatch_mctx_addcmd(lcb_MULTICMD_CTX* ctx, const lcb_CMDBASE * cmd) { return static_cast<MultiCmdContext*>(ctx)->MCTX_addcmd(cmd); } static lcb_error_t dispatch_mctx_done(lcb_MULTICMD_CTX* ctx, const void *cookie) { return static_cast<MultiCmdContext*>(ctx)->MCTX_done(cookie); } static void dispatch_mctx_fail(lcb_MULTICMD_CTX* ctx) { static_cast<MultiCmdContext*>(ctx)->MCTX_fail(); } #ifdef LCB_TRACING static void dispatch_mctx_setspan(lcb_MULTICMD_CTX* ctx, lcbtrace_SPAN *span) { static_cast<MultiCmdContext*>(ctx)->MCTX_setspan(span); } #endif }; } #endif
Version data entries
6 entries across 6 versions & 2 rubygems