Sha256: 373f3f25c15ef32a60dcad3e61ea1a7027562da858adb9e9dc28b30ad1dc4636
Contents?: true
Size: 1.79 KB
Versions: 5
Compression:
Stored size: 1.79 KB
Contents
/* * Copyright 2021-Present 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 #include <couchbase/query_scan_consistency.hxx> namespace couchbase::transactions { /** * The transactions_query_config sets the defaults for all queries in the transactions. */ class transactions_query_config { public: /** * Set scan consistency for transactions. @see query_options::scan_consistency for details. * * @param consistency the query_scan_consistency to use. * @return reference to this, so calls can be chained. */ transactions_query_config& scan_consistency(query_scan_consistency consistency) { scan_consistency_ = consistency; return *this; } /** * Get the scan consistency * * @return the query_scan_consistency */ [[nodiscard]] query_scan_consistency scan_consistency() const { return scan_consistency_; } /** @private */ struct built { query_scan_consistency scan_consistency; }; /** @private */ [[nodiscard]] auto build() const -> built { return { scan_consistency_ }; } private: query_scan_consistency scan_consistency_{ query_scan_consistency::request_plus }; }; } // namespace couchbase::transactions
Version data entries
5 entries across 5 versions & 1 rubygems