Sha256: 7c2fba415d4cc3c2251b741c70bb06db77b6d84d3dd852fac1aca51e1ce28825
Contents?: true
Size: 1.76 KB
Versions: 2
Compression:
Stored size: 1.76 KB
Contents
/* -*- Mode: C++; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- */ /* * Copyright 2022-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 * * https://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 "scan_options.hxx" #include "timeout_defaults.hxx" #include <couchbase/mutation_token.hxx> #include <couchbase/retry_strategy.hxx> #include <cinttypes> #include <memory> #include <optional> #include <system_error> #include <variant> #include <vector> namespace couchbase { class retry_strategy; namespace tracing { class request_span; } // namespace tracing } // namespace couchbase namespace couchbase::core { struct range_scan_orchestrator_options { static constexpr std::uint16_t default_concurrency{ 1 }; bool ids_only{ false }; std::optional<mutation_state> consistent_with{}; std::uint32_t batch_item_limit{ range_scan_continue_options::default_batch_item_limit }; std::uint32_t batch_byte_limit{ range_scan_continue_options::default_batch_byte_limit }; std::uint16_t concurrency{ default_concurrency }; std::shared_ptr<couchbase::retry_strategy> retry_strategy{ nullptr }; std::chrono::milliseconds timeout{ timeout_defaults::key_value_scan_timeout }; std::shared_ptr<couchbase::tracing::request_span> parent_span{}; }; } // namespace couchbase::core
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
couchbase-3.4.5 | ext/couchbase/core/range_scan_orchestrator_options.hxx |
couchbase-3.4.4 | ext/couchbase/core/range_scan_orchestrator_options.hxx |