73 -> std::pair<error, transaction_get_result> = 0;
98 const std::string&
id)
99 -> std::pair<error, transaction_get_result> = 0;
101 virtual auto get_multi(
const std::vector<transaction_get_multi_spec>& specs,
103 -> std::pair<error, std::optional<transaction_get_multi_result>> = 0;
106 const std::vector<transaction_get_multi_replicas_from_preferred_server_group_spec>& specs,
110 std::optional<transaction_get_multi_replicas_from_preferred_server_group_result>> = 0;
129 std::enable_if_t<!std::is_same_v<codec::encoded_value, Document>,
bool> =
true>
131 -> std::pair<error, transaction_get_result>
135 data = Transcoder::encode(content);
136 }
catch (std::system_error& e) {
137 return {
error(e.code(), e.what()), {} };
138 }
catch (std::runtime_error& e) {
141 return insert_raw(coll,
id, data);
170 std::enable_if_t<!std::is_same_v<codec::encoded_value, Document>,
bool> =
true>
172 -> std::pair<error, transaction_get_result>
176 data = Transcoder::encode(content);
177 }
catch (std::system_error& e) {
178 return {
error(e.code(), e.what()), {} };
179 }
catch (std::runtime_error& e) {
182 return replace_raw(doc, data);
206 -> std::pair<error, transaction_query_result>;
218 const std::string& statement,
220 -> std::pair<error, transaction_query_result>;
227 -> std::pair<error, transaction_get_result> = 0;
230 const std::string&
id,
232 -> std::pair<error, transaction_get_result> = 0;
234 virtual auto do_public_query(
const std::string& statement,
236 std::optional<std::string> query_context)
237 -> std::pair<error, transaction_query_result> = 0;
The collection provides access to all collection APIs.
Definition collection.hxx:70
The scope identifies a group of collections and allows high application density as a result.
Definition scope.hxx:47
The attempt_context is used for all synchronous transaction operations.
Definition attempt_context.hxx:47
virtual auto get_multi(const std::vector< transaction_get_multi_spec > &specs, const transaction_get_multi_options &options) -> std::pair< error, std::optional< transaction_get_multi_result > >=0
virtual auto get_multi_replicas_from_preferred_server_group(const std::vector< transaction_get_multi_replicas_from_preferred_server_group_spec > &specs, const transaction_get_multi_replicas_from_preferred_server_group_options &options) -> std::pair< error, std::optional< transaction_get_multi_replicas_from_preferred_server_group_result > >=0
auto query(const scope &scope, const std::string &statement, const transaction_query_options &opts={}) -> std::pair< error, transaction_query_result >
Perform a scoped query.
virtual auto get_replica_from_preferred_server_group(const couchbase::collection &coll, const std::string &id) -> std::pair< error, transaction_get_result >=0
Get a document copy from the selected server group.
auto insert(const couchbase::collection &coll, const std::string &id, const Document &content) -> std::pair< error, transaction_get_result >
Insert a document into a collection.
Definition attempt_context.hxx:130
auto query(const std::string &statement, const transaction_query_options &options={}) -> std::pair< error, transaction_query_result >
Perform an unscoped query.
virtual ~attempt_context()=default
virtual auto remove(const transaction_get_result &doc) -> error=0
Remove a document.
virtual auto get(const couchbase::collection &coll, const std::string &id) -> std::pair< error, transaction_get_result >=0
Get a document from a collection.
auto replace(const transaction_get_result &doc, const Document &content) -> std::pair< error, transaction_get_result >
Replace the contents of a document in a collection.
Definition attempt_context.hxx:171
Definition transaction_get_multi_options.hxx:30
Definition transaction_get_multi_replicas_from_preferred_server_group_options.hxx:30
The representation of the document in context of distributed transaction.
Definition transaction_get_result.hxx:57
The transaction_query_options are options specific to a query.
Definition transaction_query_options.hxx:35
json_transcoder< tao_json_serializer > default_json_transcoder
Definition default_json_transcoder.hxx:28
@ encoding_failure
Returned when encoding of a user object failed while trying to write it to the cluster.
Definition error_codes.hxx:267
Definition transactions.hxx:28
Represents a single item from the result of scan()
Definition allow_querying_search_index_options.hxx:28
@ error
Indicates that the ping operation failed.
Definition endpoint_ping_report.hxx:52
Definition encoded_value.hxx:27