| Modifier and Type | Method and Description |
|---|---|
<T extends ParseObject> |
ParseObject.fetchFromLocalDatastoreInBackground(GetCallback<T> callback)
Loads data from the local datastore into this object, if it has not been fetched from the
server already.
|
<T extends ParseObject> |
ParseObject.fetchIfNeededInBackground(GetCallback<T> callback)
If this
ParseObject has not been fetched (i.e. |
<T extends ParseObject> |
ParseObject.fetchInBackground(GetCallback<T> callback)
Fetches this object with the data from the server in a background thread.
|
void |
ParseQuery.getFirstInBackground(GetCallback<T> callback)
Retrieves at most one ParseObject that satisfies this query from the source in a background
thread.
|
void |
ParseQuery.getInBackground(String objectId,
GetCallback<T> callback)
Constructs a ParseObject whose id is already known by fetching data from the source in a
background thread.
|