Sha256: ed6f5af9cbc4d67b7f3a465febceeee73d96317cc96c69e606e6beabf8ec8da2
Contents?: true
Size: 1.18 KB
Versions: 8
Compression:
Stored size: 1.18 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. */ #include "key_value_config.hxx" #include <fmt/chrono.h> #include <fmt/core.h> namespace couchbase::core { auto key_value_config::to_string() const -> std::string { return fmt::format( R"(#<key_value_config:{} connect_timeout={}, reconnect_wait_backoff={}, pool_size={}, max_queue_size={}, connection_buffer_size={}>)", static_cast<const void*>(this), connect_timeout, reconnect_wait_backoff, pool_size, max_queue_size, connection_buffer_size); } } // namespace couchbase::core
Version data entries
8 entries across 8 versions & 1 rubygems