Sha256: 809c2058b4a525a8952d3059e92b717d5692e7a77983d71224a11be8a785a12d

Contents?: true

Size: 1.97 KB

Versions: 6

Compression:

Stored size: 1.97 KB

Contents

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

#include "core/cluster.hxx"
#include "core/error_context/key_value.hxx"
#include "core/operations/document_get_and_lock.hxx"

#include <couchbase/get_and_lock_options.hxx>

namespace couchbase::core::impl
{
void
initiate_get_and_lock_operation(std::shared_ptr<couchbase::core::cluster> core,
                                std::string bucket_name,
                                std::string scope_name,
                                std::string collection_name,
                                std::string document_key,
                                std::chrono::seconds lock_duration,
                                get_and_lock_options::built options,
                                get_and_lock_handler&& handler)
{
    core->execute(
      operations::get_and_lock_request{
        document_id{ std::move(bucket_name), std::move(scope_name), std::move(collection_name), std::move(document_key) },
        {},
        {},
        static_cast<uint32_t>(lock_duration.count()),
        options.timeout,
        { options.retry_strategy },
      },
      [handler = std::move(handler)](operations::get_and_lock_response&& resp) mutable {
          return handler(std::move(resp.ctx), get_result{ resp.cas, { std::move(resp.value), resp.flags }, {} });
      });
}
} // namespace couchbase::core::impl

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
couchbase-3.4.5 ext/couchbase/core/impl/get_and_lock.cxx
couchbase-3.4.4 ext/couchbase/core/impl/get_and_lock.cxx
couchbase-3.4.3 ext/couchbase/core/impl/get_and_lock.cxx
couchbase-3.4.2 ext/couchbase/core/impl/get_and_lock.cxx
couchbase-3.4.1 ext/couchbase/core/impl/get_and_lock.cxx
couchbase-3.4.0 ext/couchbase/core/impl/get_and_lock.cxx