MongoDB C++ Driver mongocxx-3.0.3
Loading...
Searching...
No Matches
Public Member Functions | List of all members
mongocxx::options::bulk_write Class Reference

Class representing the optional arguments to a MongoDB bulk write. More...

#include <bulk_write.hpp>

Public Member Functions

 bulk_write ()
 Constructs a new bulk_write object.
 
bulk_writeordered (bool ordered)
 Sets whether the writes must be executed in order by the server.
 
bool ordered () const
 Gets the current value of the ordered option.
 
bulk_writewrite_concern (class write_concern wc)
 Sets the write_concern for this operation.
 
const stdx::optional< class write_concern > & write_concern () const
 The current write_concern for this operation.
 
bulk_writebypass_document_validation (bool bypass_document_validation)
 Set whether or not to bypass document validation for this operation.
 
const stdx::optional< bool > bypass_document_validation () const
 The current setting for bypassing document validation for this operation.
 

Detailed Description

Class representing the optional arguments to a MongoDB bulk write.

Constructor & Destructor Documentation

◆ bulk_write()

mongocxx::options::bulk_write::bulk_write ( )

Constructs a new bulk_write object.

By default, bulk writes are considered ordered as this is the only safe choice. If you want an unordered update, you must call ordered(false) to switch to unordered mode.

Member Function Documentation

◆ bypass_document_validation() [1/2]

const stdx::optional< bool > mongocxx::options::bulk_write::bypass_document_validation ( ) const

The current setting for bypassing document validation for this operation.

Returns
The current document validation bypass setting.

◆ bypass_document_validation() [2/2]

bulk_write & mongocxx::options::bulk_write::bypass_document_validation ( bool  bypass_document_validation)

Set whether or not to bypass document validation for this operation.

Parameters
bypass_document_validationWhether or not to bypass document validation.

◆ ordered() [1/2]

bool mongocxx::options::bulk_write::ordered ( ) const

Gets the current value of the ordered option.

Returns
The value of the ordered option.

◆ ordered() [2/2]

bulk_write & mongocxx::options::bulk_write::ordered ( bool  ordered)

Sets whether the writes must be executed in order by the server.

The server-side default is true.

Parameters
orderedIf true all write operations will be executed serially in the order they were appended, and the entire bulk operation will abort on the first error. If false operations will be executed in arbitrary order (possibly in parallel on the server) and any errors will be reported after attempting all operations.

◆ write_concern() [1/2]

const stdx::optional< class write_concern > & mongocxx::options::bulk_write::write_concern ( ) const

The current write_concern for this operation.

Returns
The current write_concern.
See also
http://docs.mongodb.org/manual/core/write-concern/

◆ write_concern() [2/2]

bulk_write & mongocxx::options::bulk_write::write_concern ( class write_concern  wc)

Sets the write_concern for this operation.

Parameters
wcThe new write_concern.
See also
http://docs.mongodb.org/manual/core/write-concern/

The documentation for this class was generated from the following file: