MongoDB C++ Driver
mongocxx-3.6.2
|
17 #include <bsoncxx/stdx/optional.hpp>
18 #include <mongocxx/write_concern.hpp>
20 #include <mongocxx/config/prelude.hpp>
23 MONGOCXX_INLINE_NAMESPACE_BEGIN
108 stdx::optional<class write_concern> _write_concern;
109 stdx::optional<bool> _bypass_document_validation;
113 MONGOCXX_INLINE_NAMESPACE_END
116 #include <mongocxx/config/postlude.hpp>
Top level namespace for the MongoDB C++ driver.
Definition: bulk_write.hpp:24
Class representing the server-side requirement for reporting the success of a write operation.
Definition: write_concern.hpp:56
const stdx::optional< class write_concern > & write_concern() const
The current write_concern for this operation.
bool ordered() const
Gets the current value of the ordered option.
bulk_write()
Constructs a new bulk_write object.
bulk_write & ordered(bool ordered)
Sets whether the writes must be executed in order by the server.
bulk_write & bypass_document_validation(bool bypass_document_validation)
Set whether or not to bypass document validation for this operation.
bulk_write & write_concern(class write_concern wc)
Sets the write_concern for this operation.
const stdx::optional< bool > bypass_document_validation() const
The current setting for bypassing document validation for this operation.
Class representing the optional arguments to a MongoDB bulk write.
Definition: bulk_write.hpp:29