Exemple #1
0
 public void findInBackground(FindCallback<T> callback) {
   FindInBackgroundThread task = new FindInBackgroundThread(callback);
   ParseExecutor.runInBackground(task);
 }
Exemple #2
0
 public void countInBackground(CountCallback countCallback) {
   CountInBackgroundThread task = new CountInBackgroundThread(countCallback);
   ParseExecutor.runInBackground(task);
 }
Exemple #3
0
 public void getInBackground(String objectId, GetCallback<T> callback) {
   GetInBackgroundThread task = new GetInBackgroundThread(objectId, callback);
   ParseExecutor.runInBackground(task);
 }