MongoDB C++ Driver
mongocxx-3.6.2
|
19 #include <bsoncxx/document/view.hpp>
20 #include <bsoncxx/stdx/optional.hpp>
22 #include <mongocxx/config/prelude.hpp>
25 MONGOCXX_INLINE_NAMESPACE_BEGIN
114 class MONGOCXX_PRIVATE impl;
115 std::unique_ptr<impl> _impl;
121 using difference_type = std::int64_t;
123 using pointer = std::add_pointer<value_type>::type;
124 using reference = std::add_lvalue_reference<value_type>::type;
125 using iterator_category = std::input_iterator_tag;
170 enum class iter_type { k_tracking, k_default_constructed, k_end };
191 MONGOCXX_PRIVATE
bool is_exhausted()
const;
198 MONGOCXX_INLINE_NAMESPACE_END
201 #include <mongocxx/config/postlude.hpp>
iterator & operator++()
Pre-increments the iterator to move to the next document.
Definition: change_stream.hpp:31
Top level namespace for the MongoDB C++ driver.
Definition: bulk_write.hpp:24
iterator end() const
A change_stream::iterator indicating stream exhaustion, meaning that no notifications are available f...
void operator++(int)
Post-increments the iterator to move to the next document.
iterator()
Default-construct an iterator.
change_stream & operator=(change_stream &&other) noexcept
Move assigns a change_stream.
Class representing a client connection to MongoDB.
Definition: client.hpp:58
const bsoncxx::document::view * operator->() const
Accesses a member of the dereferenced document currently being pointed to.
const bsoncxx::document::view & operator*() const
Dereferences the view for the document currently being pointed to.
~change_stream()
Destroys a change_stream.
Definition: change_stream.hpp:118
change_stream(change_stream &&other) noexcept
Move constructs a change_stream.
friend bool operator!=(const change_stream::iterator &, const change_stream::iterator &) noexcept
Compare two iterators for (in)-equality.
iterator begin() const
A change_stream::iterator points to the beginning of any available notifications.
Class representing a MongoDB database.
Definition: database.hpp:43
Class representing server side document groupings within a MongoDB database.
Definition: collection.hpp:81
bsoncxx::stdx::optional< bsoncxx::document::view > get_resume_token() const
Returns a resume token for this change stream.
friend bool operator==(const change_stream::iterator &, const change_stream::iterator &) noexcept
Compare two iterators for (in)-equality.
A read-only, non-owning view of a BSON document.
Definition: view.hpp:33