Uses of Class
com.stackmob.sdk.callback.StackMobCallback

Packages that use StackMobCallback
com.stackmob.sdk.api Classes for communicating directly with StackMob. 
com.stackmob.sdk.callback The various callbacks used to respond to asynchronous calls. 
com.stackmob.sdk.model Base classes for objects that map to StackMob data. 
 

Uses of StackMobCallback in com.stackmob.sdk.api
 

Methods in com.stackmob.sdk.api with parameters of type StackMobCallback
 void StackMob.getLoggedInUser(StackMobCallback callback)
          Gets the user object for the currently logged in oauth2 user.
 void StackMob.getLoggedInUser(StackMobOptions options, StackMobCallback callback)
          Gets the user object for the currently logged in oauth2 user.
 

Uses of StackMobCallback in com.stackmob.sdk.callback
 

Subclasses of StackMobCallback in com.stackmob.sdk.callback
 class StackMobCountCallback
          A callback function meant specifically for com.stackmob.sdk.api.StackMob#count(String, StackMobRawCallback).
 class StackMobIntermediaryCallback
          A callback that allows you to inject some logic before the actual callback is called.
 class StackMobModelCallback
          A simple callback suitable for many StackMobModel methods.
 class StackMobNoopCallback
          A callback that does absolutely nothing regardless of success or failure.
 

Methods in com.stackmob.sdk.callback that return StackMobCallback
 StackMobCallback StackMobIntermediaryCallback.getFurtherCallback()
           
 

Constructors in com.stackmob.sdk.callback with parameters of type StackMobCallback
StackMobIntermediaryCallback(StackMobCallback furtherCallback)
          Create a callback that by default just passes through to the given callback
 

Uses of StackMobCallback in com.stackmob.sdk.model
 

Methods in com.stackmob.sdk.model with parameters of type StackMobCallback
<T extends StackMobModel>
void
StackMobModel.append(String field, List<T> objs, StackMobCallback callback)
          append model objects to a collection field in this object.
<T extends StackMobModel>
void
StackMobModel.appendAndSave(String field, List<T> objs, StackMobCallback callback)
          append model objects to a collection field in this object.
 void StackMobUser.createWithFacebook(String facebookToken, StackMobCallback callback)
          create this user on StackMob and associate it with an existing Facebook user via Facebook credentials.
 void StackMobUser.createWithTwitter(String twitterToken, String twitterSecret, StackMobCallback callback)
          create thsi user on StackMob and associate it with an existing Twitter user via Twitter credentials.
 void StackMobModel.destroy(StackMobCallback callback)
          delete the object from the server
 void StackMobModel.fetch(StackMobCallback callback)
          Reload the object from the server.
 void StackMobModel.fetch(StackMobOptions options, StackMobCallback callback)
          Reload the object from the server.
 void StackMobUser.linkWithFacebook(String facebookToken, StackMobCallback callback)
          link an user with an existing Facebook user via Facebook credentials.
 void StackMobUser.linkWithTwitter(String twitterToken, String twitterSecret, StackMobCallback callback)
          link an user with an existing Facebook user via Facebook credentials.
protected  void StackMobUser.login(Map<String,String> args, StackMobOptions options, StackMobCallback callback)
          log this user into StackMob with specialized info.
 void StackMobUser.login(StackMobCallback callback)
          log this user into StackMob.
 void StackMobUser.login(StackMobOptions options, StackMobCallback callback)
          log this user into StackMob.
 void StackMobUser.loginResettingTemporaryPassword(String newPassword, StackMobCallback callback)
          log this user into StackMob with their temporary password and reset their password.
 void StackMobUser.loginResettingTemporaryPassword(String newPassword, StackMobOptions options, StackMobCallback callback)
          log this user into StackMob with their temporary password and reset their password.
 void StackMobUser.loginWithFacebook(String facebookToken, StackMobCallback callback)
          login to StackMob with Facebook credentials.
 void StackMobUser.loginWithFacebook(String facebookToken, StackMobOptions options, StackMobCallback callback)
          login to StackMob with Facebook credentials.
 void StackMobUser.loginWithGigya(String gigyaUid, String timestamp, String sig, StackMobOptions options, StackMobCallback callback)
          login to StackMob with gigya credentials.
 void StackMobUser.loginWithTwitter(String twitterToken, String twitterSecret, StackMobCallback callback)
          login to StackMob with twitter credentials.
 void StackMobUser.loginWithTwitter(String twitterToken, String twitterSecret, StackMobOptions options, StackMobCallback callback)
          login to StackMob with twitter credentials.
 void StackMobUser.logout(StackMobCallback callback)
          log the user out, clearing all credential
 void StackMobUser.refreshLogin(StackMobCallback callback)
          Refresh the current OAuth2 login.
<T extends StackMobModel>
void
StackMobModel.remove(String field, List<T> objs, StackMobCallback callback)
          remove values from a collection on the client and server.
<T extends StackMobModel>
void
StackMobModel.removeAndDelete(String field, List<T> objs, StackMobCallback callback)
          remove objects from a collection and delete them on the client and server.
 void StackMobUser.resetPassword(String oldPassword, String newPassword, StackMobCallback callback)
          reset this user's passwords.
 void StackMobModel.save(StackMobCallback callback)
          Save the object to the server
 void StackMobModel.save(StackMobOptions options, StackMobCallback callback)
          Save the object to the server with options.
 void StackMobUser.save(StackMobOptions options, StackMobCallback callback)
           
static
<T extends StackMobModel>
void
StackMobModel.saveMultiple(List<T> models, StackMobCallback callback)
          save multiple objects in one batch.
static void StackMobUser.sentForgotPasswordEmail(String username, StackMobCallback callback)
          send out a password reset email to a user who's forgotten their password
 



Copyright © 2013 StackMob. All Rights Reserved.