Uses of Class
com.netmera.mobile.NetmeraCallback

Packages that use NetmeraCallback
com.netmera.mobile   
 

Uses of NetmeraCallback in com.netmera.mobile
 

Methods in com.netmera.mobile with parameters of type NetmeraCallback
 void NetmeraService.boxSearchInBackground(NetmeraGeoLocation firstPoint, NetmeraGeoLocation secondPoint, java.lang.String locationSearchField, NetmeraCallback<java.util.List<NetmeraContent>> callback)
          Creates box using the given two location (latitude,longitude) data and searches inside that box in the background thread.Since it runs on the background thread it does not block program.It is recommended over boxSearch() method.
 void NetmeraService.circleSearchInBackground(NetmeraGeoLocation startLocation, double distance, java.lang.String locationSearchField, NetmeraCallback<java.util.List<NetmeraContent>> callback)
          Searches the content by taking given location as a base and retrieves the contents that located given distance far away in the background thread.Since it runs on the background thread it does not block program.It is recommended over circleSearch() method.
 void NetmeraService.countInBackground(NetmeraCallback<java.lang.Long> callback)
          Gets the total number of results that match the query in the background thread.Since it runs on the background thread it does not block program.It is recommended over count() method.
 void NetmeraContent.createInBackground(NetmeraCallback<NetmeraContent> callback)
          Adds data to the cloud in the background thread.
 void NetmeraContent.deleteInBackground(NetmeraCallback<java.lang.Boolean> netmeraCallback)
          Deletes data from the cloud in the background thread.Since it runs on the background thread it does not block program.It is recommended over delete() method.
 void NetmeraService.getContentsInBackground(java.util.List<java.lang.String> pathList, NetmeraCallback<java.util.List<NetmeraContent>> callback)
          Gets the list of NetmeraContent objects with the given path list in the background thread.If there is no matched content for the given path list, it returns empty list.Since it runs on the background thread it does not block program.It is recommended over getContents() method.
static void NetmeraPushService.getDeviceDetailInBackground(android.content.Context context, NetmeraCallback<NetmeraDeviceDetail> callback)
          Retrieves the detailed information of a registered device in the background thread.
static void NetmeraPushService.getDeviceGroupsInBackground(int max, int page, NetmeraCallback<java.util.List<java.lang.String>> callback)
          Deprecated. 
static void NetmeraPushService.getDeviceGroupsInBackground(NetmeraCallback<java.util.List<java.lang.String>> callback)
          Deprecated. 
<T> void
NetmeraService.getInBackground(java.lang.Class<T> classOfT, NetmeraCallback<T> callback)
          Gets a single content in background and maps it to your model object.
 void NetmeraService.getInBackground(NetmeraCallback<NetmeraContent> callback)
          Gets the single NetmeraContent object that matches the query in the background thread.Since it runs on the background thread it does not block program.It is recommended over get() method.
static void NetmeraPushService.getTagsInBackground(int max, int page, NetmeraCallback<java.util.List<java.lang.String>> callback)
          Retrieves the specified tags list of all registered devices in the background thread.
static void NetmeraPushService.getTagsInBackground(NetmeraCallback<java.util.List<java.lang.String>> callback)
          Retrieves the first 10 tags of all registered devices in the background thread.
static void NetmeraPopupService.getUserPopupsFromNetmeraInBackground(NetmeraCallback<java.util.List<NetmeraPopup>> callback)
          Gets user&event related pop-ups from Netmera in background.
static void NetmeraPushInboxDataController.getUserRelatedPushNotificationsInBackground(NetmeraCache.CacheType cacheType, NetmeraCallback<java.util.List<NetmeraRichPushObject>> callback)
          Gets user related notifications using cache policy from Netmera in background.
static void NetmeraPushInboxDataController.getUserRelatedPushNotificationsInBackground(NetmeraCallback<java.util.List<NetmeraRichPushObject>> callback)
          Gets user related notifications from Netmera in background.
static void NetmeraTwitterUtils.login(android.app.Activity activity, NetmeraCallback<NetmeraUser> callback)
          Logs a user into the registered application with Twitter.
static void NetmeraFacebookUtils.login(android.app.Activity activity, NetmeraCallback<NetmeraUser> callback)
          Logs a user into the registered application with Facebook account without Facebook permissions.
static void NetmeraFacebookUtils.login(android.app.Activity activity, java.lang.String[] permissions, NetmeraCallback<NetmeraUser> callback)
          Logs a user into the registered application with Facebook account with Facebook permissions.
static void NetmeraUser.loginAsGuestInBackground(NetmeraCallback<NetmeraUser> callback)
          Logs a guest into the application in the background thread.
static void NetmeraUser.loginInBackground(java.lang.String email, java.lang.String password, NetmeraCallback<NetmeraUser> callback)
          Logs the user into the registered application in the background thread.
static void NetmeraFacebookUtils.loginSSO(android.app.Activity activity, NetmeraCallback<NetmeraUser> callback)
          Logs a user into the registered application using official Facebook application without Facebook permissions.
static void NetmeraFacebookUtils.loginSSO(android.app.Activity activity, java.lang.String[] permissions, NetmeraCallback<NetmeraUser> callback)
          Logs a user into the registered application using official Facebook application with Facebook permissions.
 void NetmeraUser.registerInBackground(NetmeraCallback<NetmeraUser> callback)
          Registers user in the background thread.
<T> void
NetmeraService.searchInBackground(java.lang.Class<T> classOfT, NetmeraCallback<java.util.List<T>> callback)
          Gets a list of contents in background and maps them to your model object.
 void NetmeraService.searchInBackground(NetmeraCallback<java.util.List<NetmeraContent>> callback)
          Retrieves the list of NetmeraContent objects that matches with the query in the background thread.Since it runs on the background thread it does not block program.It is recommended over search() method.
 void NetmeraService.searchUserInBackground(NetmeraCallback<java.util.List<NetmeraUser>> callback)
          Retrieves the list of NetmeraUser objects that matches with the query in the background thread.Since it runs on the background thread it does not block program.It is recommended over searchUser() method.
static void NetmeraPushSender.sendPushNotificationInBackground(NetmeraPushObject push, NetmeraCallback<java.lang.Void> callback)
          Sends given push notification message to specified users in background.
 void NetmeraContent.updateInBackground(NetmeraCallback<NetmeraContent> callback)
          Updates data in the background thread.
 void NetmeraUser.updateInBackground(NetmeraCallback<NetmeraUser> callback)
          Updates user info in the background thread.