You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looks like you might need to use the async methods for saves and loads.
Async save is done by calling
object.save(new RushCallback() {
@Override
public void complete() {
/* Callback is on the thread objects where saved on,
not thread that called save */
}
});
You can use a null callback if you don't care about the response.
There is also an async load method on RushSearch. Just need to watch as the callback is not in the main thread.
We have some ANRs in our Project due to rush queue:
Any ideas how to fix this?
The text was updated successfully, but these errors were encountered: