Uses of Class
com.parse.GetCallback

Uses of GetCallback in com.parse
 

Methods in com.parse with parameters of type GetCallback
<T extends ParseObject>
void
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>
void
ParseObject.fetchIfNeededInBackground(GetCallback<T> callback)
          If this ParseObject has not been fetched (i.e.
<T extends ParseObject>
void
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.