MongoDB C++ Driver 4.1.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
bulk_write.hpp
Go to the documentation of this file.
1// Copyright 2009-present MongoDB, Inc.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15#pragma once
16
18
22
24
26
27namespace mongocxx {
28namespace v_noabi {
29namespace options {
30
35 public:
42
59
66
81
93
106
113 MONGOCXX_ABI_EXPORT_CDECL(bsoncxx::v_noabi::stdx::optional<bool> const)
115
127
134 MONGOCXX_ABI_EXPORT_CDECL(bsoncxx::v_noabi::stdx::optional<bsoncxx::v_noabi::document::view_or_value> const)
135 let() const;
136
148 comment(bsoncxx::v_noabi::types::bson_value::view_or_value comment);
149
157 bsoncxx::v_noabi::types::bson_value::view_or_value> const)
158 comment() const;
159
160 private:
161 bool _ordered;
162 bsoncxx::v_noabi::stdx::optional<mongocxx::v_noabi::write_concern> _write_concern;
163 bsoncxx::v_noabi::stdx::optional<bool> _bypass_document_validation;
164 bsoncxx::v_noabi::stdx::optional<bsoncxx::v_noabi::document::view_or_value> _let;
165 bsoncxx::v_noabi::stdx::optional<bsoncxx::v_noabi::types::bson_value::view_or_value> _comment;
166};
167
168} // namespace options
169} // namespace v_noabi
170} // namespace mongocxx
171
172#include <mongocxx/config/postlude.hpp>
173
bulk_write()
Constructs a new bulk_write object. By default, bulk writes are considered ordered as this is the onl...
bulk_write & ordered(bool ordered)
Sets whether the writes must be executed in order by the server.
bulk_write & comment(bsoncxx::v_noabi::types::bson_value::view_or_value comment)
Set the value of the comment option.
bulk_write & let(bsoncxx::v_noabi::document::view_or_value let)
Set the value of the let option.
bulk_write()
Constructs a new bulk_write object. By default, bulk writes are considered ordered as this is the onl...
bulk_write & bypass_document_validation(bool bypass_document_validation)
Set whether or not to bypass document validation for this operation.
bulk_write & write_concern(mongocxx::v_noabi::write_concern wc)
Sets the write_concern for this operation.
Provides bsoncxx::v_noabi::document::view_or_value.
#define MONGOCXX_ABI_EXPORT_CDECL(...)
Equivalent to MONGOCXX_ABI_EXPORT with MONGOCXX_ABI_CDECL.
Definition export.hpp:52
The mongocxx v_noabi macro guard prelude header.
The top-level namespace within which all bsoncxx library entities are declared.
Declares entities representing options to use with various commands.
Declares entities whose ABI stability is NOT guaranteed.
The top-level namespace within which all mongocxx library entities are declared.
Declares mongocxx::v_noabi::options::bulk_write.
Provides bsoncxx::v_noabi::types::bson_value::view_or_value.
Provides std::optional-related polyfills for library API usage.
Provides mongocxx::v_noabi::write_concern.