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

Class representing optional arguments to IndexView operations. More...

#include <index_view.hpp>

Public Member Functions

index_viewmax_time (std::chrono::milliseconds max_time)
 Sets the maximum amount of time for this operation to run (server-side) in milliseconds.
 
const bsoncxx::v_noabi::stdx::optional< std::chrono::milliseconds > & max_time () const
 The current max_time setting.
 
index_viewwrite_concern (mongocxx::v_noabi::write_concern write_concern)
 Sets the write concern for this operation.
 
const bsoncxx::v_noabi::stdx::optional< mongocxx::v_noabi::write_concern > & write_concern () const
 Gets the current write concern.
 
index_viewcommit_quorum (std::int32_t commit_quorum)
 Sets the commit quorum for this operation.
 
index_viewcommit_quorum (std::string commit_quorum)
 Sets the commit quorum for this operation.
 
const stdx::optional< bsoncxx::v_noabi::document::valuecommit_quorum () const
 Gets the current commitQuorum setting.
 

Detailed Description

Class representing optional arguments to IndexView operations.

Member Function Documentation

◆ commit_quorum() [1/3]

const stdx::optional< bsoncxx::v_noabi::document::value > mongocxx::v_noabi::options::index_view::commit_quorum ( ) const

Gets the current commitQuorum setting.

This option may only be used with MongoDB version 4.4 or later.

Returns
The current commitQuorum setting.
See also
https://www.mongodb.com/docs/manual/reference/command/createIndexes

◆ commit_quorum() [2/3]

index_view & mongocxx::v_noabi::options::index_view::commit_quorum ( std::int32_t  commit_quorum)

Sets the commit quorum for this operation.

This option may only be used with MongoDB version 4.4 or later.

Parameters
commit_quorumInteger representing the minimum number of data-bearing voting replica set members (i.e. commit quorum), including the primary, that must report a successful index build before the primary marks the indexes as ready. A value of 0 disables quorum-voting behavior.
Returns
A reference to the object on which this member function is being called. This facilitates method chaining.
See also
https://www.mongodb.com/docs/manual/reference/command/createIndexes

◆ commit_quorum() [3/3]

index_view & mongocxx::v_noabi::options::index_view::commit_quorum ( std::string  commit_quorum)

Sets the commit quorum for this operation.

This option may only be used with MongoDB version 4.4 or later.

Parameters
commit_quorumString representing the minimum number of data-bearing voting replica set members (i.e. commit quorum), including the primary, that must report a successful index build before the primary marks the indexes as ready.
Returns
A reference to the object on which this member function is being called. This facilitates method chaining.
See also
https://www.mongodb.com/docs/manual/reference/command/createIndexes

◆ max_time() [1/2]

const bsoncxx::v_noabi::stdx::optional< std::chrono::milliseconds > & mongocxx::v_noabi::options::index_view::max_time ( ) const

The current max_time setting.

Returns
The current max allowed running time (in milliseconds).
See also
https://www.mongodb.com/docs/manual/reference/command/findAndModify/

◆ max_time() [2/2]

index_view & mongocxx::v_noabi::options::index_view::max_time ( std::chrono::milliseconds  max_time)

Sets the maximum amount of time for this operation to run (server-side) in milliseconds.

Parameters
max_timeThe max amount of time (in milliseconds).
Returns
A reference to the object on which this member function is being called. This facilitates method chaining.
See also
https://www.mongodb.com/docs/manual/reference/command/findAndModify/

◆ write_concern() [1/2]

const bsoncxx::v_noabi::stdx::optional< mongocxx::v_noabi::write_concern > & mongocxx::v_noabi::options::index_view::write_concern ( ) const

Gets the current write concern.

Returns
The current write concern.
See also
https://www.mongodb.com/docs/manual/reference/command/findAndModify/

◆ write_concern() [2/2]

index_view & mongocxx::v_noabi::options::index_view::write_concern ( mongocxx::v_noabi::write_concern  write_concern)

Sets the write concern for this operation.

Parameters
write_concernObject representing the write concern.
Returns
A reference to the object on which this member function is being called. This facilitates method chaining.
See also
https://www.mongodb.com/docs/manual/reference/command/findAndModify/

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