MongoDB C++ Driver
mongocxx-3.6.2
|
17 #include <bsoncxx/array/view_or_value.hpp>
18 #include <bsoncxx/document/view_or_value.hpp>
19 #include <bsoncxx/stdx/optional.hpp>
20 #include <mongocxx/hint.hpp>
21 #include <mongocxx/stdx.hpp>
22 #include <mongocxx/write_concern.hpp>
24 #include <mongocxx/config/prelude.hpp>
27 MONGOCXX_INLINE_NAMESPACE_BEGIN
83 const stdx::optional<bsoncxx::document::view_or_value>&
collation()
const;
108 const stdx::optional<bool>&
upsert()
const;
154 const stdx::optional<class hint>&
hint()
const;
157 stdx::optional<bool> _bypass_document_validation;
158 stdx::optional<bsoncxx::document::view_or_value> _collation;
159 stdx::optional<bool> _upsert;
160 stdx::optional<class write_concern> _write_concern;
161 stdx::optional<class hint> _hint;
165 MONGOCXX_INLINE_NAMESPACE_END
168 #include <mongocxx/config/postlude.hpp>
Top level namespace for the MongoDB C++ driver.
Definition: bulk_write.hpp:24
replace & hint(class hint index_hint)
Sets the index to use for this operation.
Class representing the server-side requirement for reporting the success of a write operation.
Definition: write_concern.hpp:56
const stdx::optional< bool > & upsert() const
Gets the current value of the upsert option.
const stdx::optional< class write_concern > & write_concern() const
The current write_concern for this operation.
replace & write_concern(class write_concern wc)
Sets the write_concern for this operation.
Class representing a hint to be passed to a database operation.
Definition: hint.hpp:32
replace & collation(bsoncxx::document::view_or_value collation)
Sets the collation for this operation.
const stdx::optional< bsoncxx::document::view_or_value > & collation() const
Retrieves the current collation for this operation.
const stdx::optional< bool > & bypass_document_validation() const
Gets the current value of the bypass_document_validation option.
Class representing the optional arguments to a MongoDB replace operation.
Definition: replace.hpp:33
const stdx::optional< class hint > & hint() const
Gets the current hint.
replace & upsert(bool upsert)
Sets the upsert option.
replace & bypass_document_validation(bool bypass_document_validation)
Sets the bypass_document_validation option.