1#ifndef _DITTO_PENDING_COLLECTIONS_OPERATION_
2#define _DITTO_PENDING_COLLECTIONS_OPERATION_
4#include "Collection.hpp"
5#include "CollectionsEvent.hpp"
6#include "LiveQuery.hpp"
7#include "PendingCursorOperation.hpp"
8#include "SortDirection.hpp"
9#include "Subscription.hpp"
17class DittoHandleWrapper;
36 CollectionsEventWithNextSignalCallback;
61 std::shared_ptr<DittoHandleWrapper> ditto_handle_wrapper;
65 std::shared_ptr<DittoHandleWrapper> ditto_handle_wrapper);
112 std::vector<Collection>
exec()
const;
125 std::shared_ptr<Subscription>
subscribe()
const;
139 std::shared_ptr<LiveQuery>
140 observe_local(CollectionsEventCallback event_callback)
const;
156 CollectionsEventWithNextSignalCallback event_callback)
const;
166 static LiveQueryEventCallback
167 buildLiveQueryCallback(CollectionsEventCallback callback,
168 std::shared_ptr<DittoHandleWrapper> dhw);
177 static LiveQueryEventWithNextSignalCallback
178 buildLiveQueryWithNextSignalCallback(
179 CollectionsEventWithNextSignalCallback callback,
180 std::shared_ptr<DittoHandleWrapper> dhw);
Provides information about the changes that have occurred in relation to an event delivered when obse...
Definition CollectionsEvent.hpp:21
These objects are returned when calling collections() on Store objects.
Definition PendingCollectionsOperation.hpp:58
PendingCollectionsOperation & sort(std::string query, SortDirection direction)
Sort the collections based on a property of the collection.
Definition PendingCollectionsOperation.cpp:52
std::vector< Collection > exec() const
Return the list of collections requested based on the preceding function chaining.
Definition PendingCollectionsOperation.cpp:19
PendingCollectionsOperation & offset(uint32_t offset)
Offset the resulting set of collections.
Definition PendingCollectionsOperation.cpp:40
PendingCollectionsOperation & limit(uint32_t limit)
Limit the number of collections that get returned.
Definition PendingCollectionsOperation.cpp:46
std::shared_ptr< LiveQuery > observe_local(CollectionsEventCallback event_callback) const
Enables you to listen for changes that occur in relation to the collections that are known about loca...
Definition PendingCollectionsOperation.cpp:24
std::shared_ptr< Subscription > subscribe() const
Subscribes the device to updates about collections that other devices know about.
Definition PendingCollectionsOperation.cpp:58
std::shared_ptr< LiveQuery > observe_local_with_next_signal(CollectionsEventWithNextSignalCallback event_callback) const
Enables you to listen for changes that occur in relation to the collections that are known about loca...
Definition PendingCollectionsOperation.cpp:32
These objects are returned when using find-like functionality on Collection objects.
Definition PendingCursorOperation.hpp:44
Provides access to Collections and a write transaction API.
Definition Store.hpp:29
Definition PendingCollectionsOperation.hpp:19
Definition PendingCollectionsOperation.hpp:23