Exemplo n.º 1
0
 public void deleteInBackground(DeleteCallback deleteCallback) {
   DeleteInBackgroundThread task = new DeleteInBackgroundThread(deleteCallback);
   ParseExecutor.runInBackground(task);
 }
Exemplo n.º 2
0
 public void saveInBackground(SaveCallback saveCallback) {
   SaveInBackgroundThread task = new SaveInBackgroundThread(saveCallback);
   ParseExecutor.runInBackground(task);
 }
Exemplo n.º 3
0
 public void findInBackground(FindCallback<T> callback) {
   FindInBackgroundThread task = new FindInBackgroundThread(callback);
   ParseExecutor.runInBackground(task);
 }
Exemplo n.º 4
0
 public void countInBackground(CountCallback countCallback) {
   CountInBackgroundThread task = new CountInBackgroundThread(countCallback);
   ParseExecutor.runInBackground(task);
 }
Exemplo n.º 5
0
 public void getInBackground(String objectId, GetCallback<T> callback) {
   GetInBackgroundThread task = new GetInBackgroundThread(objectId, callback);
   ParseExecutor.runInBackground(task);
 }