Couchbase C++ SDK
1.4.0 (rev. 59aa900)
Toggle main menu visibility
Loading...
Searching...
No Matches
append_options.hxx
Go to the documentation of this file.
1
/* -*- Mode: C++; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- */
2
/*
3
* Copyright 2020-Present Couchbase, Inc.
4
*
5
* Licensed under the Apache License, Version 2.0 (the "License");
6
* you may not use this file except in compliance with the License.
7
* You may obtain a copy of the License at
8
*
9
* http://www.apache.org/licenses/LICENSE-2.0
10
*
11
* Unless required by applicable law or agreed to in writing, software
12
* distributed under the License is distributed on an "AS IS" BASIS,
13
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
* See the License for the specific language governing permissions and
15
* limitations under the License.
16
*/
17
18
#pragma once
19
20
#include <
couchbase/codec/encoded_value.hxx
>
21
#include <
couchbase/common_durability_options.hxx
>
22
#include <
couchbase/error.hxx
>
23
#include <
couchbase/expiry.hxx
>
24
#include <
couchbase/mutation_result.hxx
>
25
26
#include <chrono>
27
#include <functional>
28
#include <memory>
29
#include <optional>
30
#include <vector>
31
32
namespace
couchbase
33
{
34
41
struct
append_options
:
public
common_durability_options
<append_options> {
48
struct
built
:
public
common_durability_options
<append_options>
::built
{
49
const
couchbase::cas
cas
;
50
};
51
63
[[nodiscard]]
auto
build
() const ->
built
64
{
65
auto
base =
build_common_durability_options
();
66
return
{ base, cas_ };
67
}
68
86
auto
cas
(
couchbase::cas
cas
) ->
append_options
&
87
{
88
cas_ =
cas
;
89
return
self
();
90
}
91
92
private
:
93
couchbase::cas
cas_{};
94
};
95
102
using
append_handler
= std::function<void(
error
,
mutation_result
)>;
103
}
// namespace couchbase
couchbase::cas
CAS is a special type that represented in protocol using unsigned 64-bit integer, but only equality c...
Definition
cas.hxx:34
couchbase::common_durability_options
Common options that used by most operations.
Definition
common_durability_options.hxx:39
couchbase::common_durability_options< append_options >::build_common_durability_options
auto build_common_durability_options() const -> built
Definition
common_durability_options.hxx:115
couchbase::common_options< append_options >::self
auto self() -> append_options &
Definition
common_options.hxx:116
couchbase::error
Definition
error.hxx:31
couchbase::mutation_result
Represents result of mutation operations.
Definition
mutation_result.hxx:35
common_durability_options.hxx
encoded_value.hxx
error.hxx
expiry.hxx
mutation_result.hxx
couchbase
Represents a single item from the result of scan().
Definition
allow_querying_search_index_options.hxx:28
couchbase::append_handler
std::function< void(error, mutation_result)> append_handler
The signature for the handler of the append() operation.
Definition
append_options.hxx:102
couchbase::append_options::built
Immutable value object representing consistent options.
Definition
append_options.hxx:48
couchbase::append_options::built::cas
const couchbase::cas cas
Definition
append_options.hxx:49
couchbase::append_options
Options for append().
Definition
append_options.hxx:41
couchbase::append_options::cas
auto cas(couchbase::cas cas) -> append_options &
Specifies a CAS value that will be taken into account on the server side for optimistic concurrency.
Definition
append_options.hxx:86
couchbase::append_options::build
auto build() const -> built
Validates options and returns them as an immutable value.
Definition
append_options.hxx:63
couchbase
append_options.hxx
Generated by
1.17.0