|
Couchbase C++ SDK 1.4.0 (rev. 59aa900)
|
#include <couchbase/upsert_options.hxx>

Classes | |
| struct | built |
| Immutable value object representing consistent options. More... | |
Public Member Functions | |
| auto | build () const -> built |
| Validates options and returns them as an immutable value. | |
| auto | preserve_expiry (bool preserve) -> upsert_options & |
| Specifies whether an existing document's expiry should be preserved. | |
| auto | expiry (std::chrono::seconds duration) -> upsert_options & |
| Sets the expiry for the document. | |
| auto | expiry (std::chrono::system_clock::time_point time_point) -> upsert_options & |
| Sets the expiry for the document. | |
| Public Member Functions inherited from common_durability_options< upsert_options > | |
| auto | durability (durability_level level) -> upsert_options & |
| Allows to customize the enhanced durability requirements for this operation. | |
| Public Member Functions inherited from common_options< upsert_options > | |
| auto | timeout (const std::chrono::milliseconds timeout) -> upsert_options & |
| Specifies a custom per-operation timeout. | |
| auto | retry_strategy (const std::shared_ptr< retry_strategy > strategy) -> upsert_options & |
Specifies a custom couchbase::retry_strategy for this operation. | |
| auto | parent_span (std::shared_ptr< tracing::request_span > span) -> upsert_options & |
Additional Inherited Members | |
| Protected Member Functions inherited from common_durability_options< upsert_options > | |
| auto | build_common_durability_options () const -> built |
| Protected Member Functions inherited from common_options< upsert_options > | |
| auto | build_common_options () const -> built |
| auto | self () -> upsert_options & |
| Allows to return the right options builder instance for child implementations. | |
Options for upsert().
|
inlinenodiscard |
Validates options and returns them as an immutable value.
| std::system_error | with code errc::common::invalid_argument if the options are not valid |
|
inline |
Sets the expiry for the document.
By default the document will never expire.
The duration must be less than 50 years. For expiry further in the future, use expiry(std::chrono::system_clock::time_point).
| duration | the duration after which the document will expire (zero duration means never expire). |
|
inline |
Sets the expiry for the document.
By default the document will never expire.
| time_point | the point in time when the document will expire (epoch second zero means never expire). |
|
inline |
Specifies whether an existing document's expiry should be preserved.
Defaults to false.
If true, and the document exists, its expiry will not be modified. Otherwise the document's expiry is determined by expiry(std::chrono::seconds) or expiry(std::chrono::system_clock::time_point).
Requires Couchbase Server 7.0 or later.
| preserve | true to preserve expiry, false to set new expiry |