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

Class representing the optional arguments to a MongoDB distinct command. More...

#include <distinct.hpp>

Public Member Functions

distinctmax_time (std::chrono::milliseconds max_time)
 Sets the maximum amount of time for this operation to run (server-side) in milliseconds.
 
const stdx::optional< std::chrono::milliseconds > & max_time () const
 The current max_time setting.
 
distinctread_preference (class read_preference rp)
 Sets the read_preference for this operation.
 
const stdx::optional< class read_preference > & read_preference () const
 The current read_preference for this operation.
 

Detailed Description

Class representing the optional arguments to a MongoDB distinct command.

Member Function Documentation

◆ max_time() [1/2]

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

The current max_time setting.

Returns
The current max time (in milliseconds).
See also
http://docs.mongodb.org/manual/reference/operator/meta/maxTimeMS

◆ max_time() [2/2]

distinct & mongocxx::options::distinct::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).
See also
http://docs.mongodb.org/manual/reference/operator/meta/maxTimeMS

◆ read_preference() [1/2]

const stdx::optional< class read_preference > & mongocxx::options::distinct::read_preference ( ) const

The current read_preference for this operation.

Returns
the current read_preference.
See also
http://docs.mongodb.org/manual/core/read-preference/

◆ read_preference() [2/2]

distinct & mongocxx::options::distinct::read_preference ( class read_preference  rp)

Sets the read_preference for this operation.

Parameters
rpThe new read_preference.
See also
http://docs.mongodb.org/manual/core/read-preference/

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