MongoDB C++ Driver mongocxx-3.4.0
Loading...
Searching...
No Matches
Public Member Functions | List of all members
mongocxx::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::stdx::optional< std::chrono::milliseconds > & max_time () const
 The current max_time setting.
 
index_viewwrite_concern (mongocxx::write_concern write_concern)
 Sets the write concern for this operation.
 
const bsoncxx::stdx::optional< mongocxx::write_concern > & write_concern () const
 Gets the current write concern.
 

Detailed Description

Class representing optional arguments to IndexView operations.

Member Function Documentation

◆ max_time() [1/2]

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

The current max_time setting.

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

◆ max_time() [2/2]

index_view & mongocxx::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://docs.mongodb.com/master/reference/command/findAndModify/

◆ write_concern() [1/2]

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

Gets the current write concern.

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

◆ write_concern() [2/2]

index_view & mongocxx::options::index_view::write_concern ( mongocxx::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://docs.mongodb.com/master/reference/command/findAndModify/

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