1#ifndef _DITTO_PENDING_ID_SPECIFIC_OPERATION_
2#define _DITTO_PENDING_ID_SPECIFIC_OPERATION_
5#include "DocumentId.hpp"
7#include "LiveQuery.hpp"
8#include "MutableDocument.hpp"
9#include "Subscription.hpp"
10#include "UpdateResult.hpp"
43 std::shared_ptr<DittoHandleWrapper> ditto_handle_wrapper;
47 std::shared_ptr<DittoHandleWrapper> ditto_handle_wrapper,
50 std::shared_ptr<LiveQuery> observe_internal(
51 std::unique_ptr<Subscription> &&subscription,
55 std::shared_ptr<LiveQuery> observe_internal(
56 std::unique_ptr<Subscription> &&subscription,
58 SingleDocumentLiveQueryEventWithNextSignalCallback event_callback)
const;
78 std::shared_ptr<Document>
exec()
const;
91 std::vector<std::unique_ptr<UpdateResult>>
123 std::shared_ptr<Subscription>
subscribe()
const;
146 std::shared_ptr<LiveQuery>
147 observe_local(SingleDocumentLiveQueryEventCallback event_callback)
const;
172 SingleDocumentLiveQueryEventWithNextSignalCallback event_callback)
const;
A reference to a collection in a Store.
Definition Collection.hpp:27
This is used as part of update operations for documents.
Definition MutableDocument.hpp:29
These objects are returned when using Collection::find_by_id functionality.
Definition PendingIDSpecificOperation.hpp:40
bool remove() const
Remove the document with the matching ID.
Definition PendingIDSpecificOperation.cpp:141
std::shared_ptr< Document > exec() const
Execute the find operation to return the document with the matching ID.
Definition PendingIDSpecificOperation.cpp:40
std::shared_ptr< Subscription > subscribe() const
Subscribe to changes from other peers that occur in relation to the relevant document.
Definition PendingIDSpecificOperation.cpp:122
DocumentId id
Definition PendingIDSpecificOperation.hpp:69
std::shared_ptr< LiveQuery > observe_local(SingleDocumentLiveQueryEventCallback event_callback) const
Enables you to listen for changes that occur locally in relation to the relevant document.
Definition PendingIDSpecificOperation.cpp:44
std::string collection_name
Definition PendingIDSpecificOperation.hpp:64
std::vector< std::unique_ptr< UpdateResult > > update(std::function< void(MutableDocument &)> fn)
Update the document with the matching ID using the provided function.
Definition PendingIDSpecificOperation.cpp:129
bool evict() const
Evict the document with the matching ID.
Definition PendingIDSpecificOperation.cpp:153
std::shared_ptr< LiveQuery > observe_local_with_next_signal(SingleDocumentLiveQueryEventWithNextSignalCallback event_callback) const
Enables you to listen for changes that occur locally in relation to the relevant document,...
Definition PendingIDSpecificOperation.cpp:51
An identifier for a Document.
Definition DocumentId.hpp:21
A thin wrapper around a function that will get called when there are updates relating to a live query...
Definition LiveQuery.hpp:54