22 #include <bsoncxx/document/view_or_value.hpp> 23 #include <bsoncxx/stdx/optional.hpp> 24 #include <mongocxx/stdx.hpp> 26 #include <mongocxx/config/prelude.hpp> 29 MONGOCXX_INLINE_NAMESPACE_BEGIN
89 k_secondary_preferred,
133 read_preference(
const read_preference&);
138 read_preference& operator=(
const read_preference&);
143 read_preference(read_preference&&) noexcept;
148 read_preference& operator=(read_preference&&) noexcept;
195 stdx::optional<bsoncxx::document::view> tags()
const;
227 read_preference& max_staleness(std::chrono::seconds max_staleness);
234 stdx::optional<std::chrono::seconds> max_staleness()
const;
249 friend MONGOCXX_API
bool MONGOCXX_CALL operator==(
const read_preference&,
250 const read_preference&);
251 friend MONGOCXX_API
bool MONGOCXX_CALL operator!=(
const read_preference&,
252 const read_preference&);
257 class MONGOCXX_PRIVATE impl;
259 MONGOCXX_PRIVATE read_preference(std::unique_ptr<impl>&& implementation);
261 std::unique_ptr<impl> _impl;
264 MONGOCXX_INLINE_NAMESPACE_END
267 #include <mongocxx/config/postlude.hpp> Class representing a MongoDB connection string URI.
Definition: uri.hpp:40
Top level namespace for the MongoDB C++ driver.
Definition: bulk_write.hpp:24
Class representing a client connection to MongoDB.
Definition: client.hpp:57
Definition: read_preference.hpp:102
Class representing a MongoDB database.
Definition: database.hpp:47
Class representing a preference for how the driver routes read operations to members of a replica set...
Definition: read_preference.hpp:57
read_mode
Determines which members in a replica set are acceptable to read from.
Definition: read_preference.hpp:70
Class representing server side document groupings within a MongoDB database.
Definition: collection.hpp:87