Sha256: b3bd11eba55527ee6258c9e4005c23dddbc1d1d7abe93194929ef1939ebb0e29

Contents?: true

Size: 1.29 KB

Versions: 17

Compression:

Stored size: 1.29 KB

Contents

/* -*- Mode: C++; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- */
/*
 *     Copyright 2020 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.
 */

#pragma once

namespace couchbase
{
struct mutation_token {
    uint64_t partition_uuid{ 0 };
    uint64_t sequence_number{ 0 };
    uint16_t partition_id{ 0 };
    std::string bucket_name{};
};
} // namespace couchbase

template<>
struct fmt::formatter<couchbase::mutation_token> : formatter<std::string> {
    template<typename FormatContext>
    auto format(const couchbase::mutation_token& token, FormatContext& ctx)
    {
        format_to(ctx.out(), "{}:{}:{}:{}", token.bucket_name, token.partition_id, token.partition_uuid, token.sequence_number);
        return formatter<std::string>::format("", ctx);
    }
};

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
couchbase-3.0.3 ext/couchbase/mutation_token.hxx
couchbase-3.0.3-universal-darwin-20 ext/couchbase/mutation_token.hxx
couchbase-3.0.2 ext/couchbase/mutation_token.hxx
couchbase-3.0.1-universal-darwin-19 ext/couchbase/mutation_token.hxx
couchbase-3.0.1 ext/couchbase/mutation_token.hxx
couchbase-3.0.0-universal-darwin-19 ext/couchbase/mutation_token.hxx
couchbase-3.0.0 ext/couchbase/mutation_token.hxx
couchbase-3.0.0.beta.1-universal-darwin-19 ext/couchbase/mutation_token.hxx
couchbase-3.0.0.beta.1 ext/couchbase/mutation_token.hxx
couchbase-3.0.0.alpha.5-x86_64-linux ext/couchbase/mutation_token.hxx
couchbase-3.0.0.alpha.5-universal-darwin-19 ext/couchbase/mutation_token.hxx
couchbase-3.0.0.alpha.5-x86_64-darwin-19 ext/couchbase/mutation_token.hxx
couchbase-3.0.0.alpha.5 ext/couchbase/mutation_token.hxx
couchbase-3.0.0.alpha.4-x86_64-linux ext/couchbase/mutation_token.hxx
couchbase-3.0.0.alpha.4-x86_64-darwin-19 ext/couchbase/mutation_token.hxx
couchbase-3.0.0.alpha.4-universal-darwin-19 ext/couchbase/mutation_token.hxx
couchbase-3.0.0.alpha.4 ext/couchbase/mutation_token.hxx