ParseLiveQuery-Android
ParseLiveQuery-Android copied to clipboard
Parse LiveQuery client for Android.
In my activity's `onResume()` I am subscribing to live query ``` @Override protected void onResume() { SubscriptionHandling subscriptionHandling = mParseLiveQueryClient.subscribe(messageQuery); subscriptionHandling.handleEvents(new SubscriptionHandling.HandleEventsCallback() { @Override public void onEvents(ParseQuery query, SubscriptionHandling.Event event,...
Mostly for reference. Based on iOS Xcode app.
suppose one subscribed for an ParseObject with objectID = X then in the same time on executing the following line, the subscriber change the object in another thraed and call...
Hi, We have 3 live queries subscribed simultaneously. Each of them subscribes on a different class. The following one is not working correctly somehow. The query is for live chatting...
Current implementation uses Executor, which makes it harder to perform scheduled tasks or to perform task chaining. Currently tasks are enqueued by invoking a static method: ```java return Task.call(new Callable()...
### New Feature / Enhancement Checklist - [x] I am not disclosing a [vulnerability](https://github.com/parse-community/ParseLiveQuery-Android/security/policy). - [x] I am not just asking a [question](https://github.com/parse-community/.github/blob/main/SUPPORT.md). - [x] I have searched through [existing...