Class GlobalAppService

java.lang.Object
com.bitheads.braincloud.services.GlobalAppService

public class GlobalAppService
extends Object
  • Constructor Details

  • Method Details

    • readProperties

      public void readProperties​(IServerCallback callback)
      Method returns all the global properties of a game.
      Parameters:
      callback - The callback.
    • readSelectedProperties

      public void readSelectedProperties​(ArrayList<String> propertyNames, IServerCallback callback)
      Returns a list of properties, identified by the property names provided. If a property from the list isn't found, it just isn't returned (no error). Service Name - GlobalApp Service Operation - READ_SELECTED_PROPERTIES
      Parameters:
      propertyNames - Specifies which properties to return
      callback - The method to be invoked when the server response is received
    • readPropertiesInCategories

      public void readPropertiesInCategories​(ArrayList<String> categories, IServerCallback callback)
      Returns a list of properties, identified by the categories provided. If a category from the list isn't found, it just isn't returned (no error). Service Name - GlobalApp Service Operation - READ_PROPERTIES_IN_CATEGORIES
      Parameters:
      categories - Specifies which category to return
      callback - The method to be invoked when the server response is received