MongoDB C++ Driver
mongocxx-3.6.2
|
21 #include <bsoncxx/document/view_or_value.hpp>
22 #include <bsoncxx/stdx/optional.hpp>
23 #include <mongocxx/read_preference.hpp>
25 #include <mongocxx/config/prelude.hpp>
28 MONGOCXX_INLINE_NAMESPACE_BEGIN
58 const stdx::optional<bsoncxx::document::view_or_value>&
collation()
const;
81 const stdx::optional<std::chrono::milliseconds>&
max_time()
const;
107 stdx::optional<bsoncxx::document::view_or_value> _collation;
108 stdx::optional<std::chrono::milliseconds> _max_time;
109 stdx::optional<class read_preference> _read_preference;
113 MONGOCXX_INLINE_NAMESPACE_END
116 #include <mongocxx/config/postlude.hpp>
distinct & collation(bsoncxx::document::view_or_value collation)
Sets the collation for this operation.
const stdx::optional< bsoncxx::document::view_or_value > & collation() const
Retrieves the current collation for this operation.
Top level namespace for the MongoDB C++ driver.
Definition: bulk_write.hpp:24
distinct & read_preference(class read_preference rp)
Sets the read_preference for this operation.
distinct & max_time(std::chrono::milliseconds max_time)
Sets the maximum amount of time for this operation to run (server-side) in milliseconds.
Class representing the optional arguments to a MongoDB distinct command.
Definition: distinct.hpp:34
Class representing a preference for how the driver routes read operations to members of a replica set...
Definition: read_preference.hpp:62
const stdx::optional< class read_preference > & read_preference() const
The current read_preference for this operation.
const stdx::optional< std::chrono::milliseconds > & max_time() const
The current max_time setting.