Package com.bitheads.braincloud.services
Class GlobalAppService
java.lang.Object
com.bitheads.braincloud.services.GlobalAppService
public class GlobalAppService extends Object
-
Constructor Summary
Constructors Constructor Description GlobalAppService(BrainCloudClient client) -
Method Summary
Modifier and Type Method Description voidreadProperties(IServerCallback callback)Method returns all the global properties of a game.voidreadPropertiesInCategories(ArrayList<String> categories, IServerCallback callback)Returns a list of properties, identified by the categories provided.voidreadSelectedProperties(ArrayList<String> propertyNames, IServerCallback callback)Returns a list of properties, identified by the property names provided.
-
Constructor Details
-
GlobalAppService
-
-
Method Details
-
readProperties
Method returns all the global properties of a game.- Parameters:
callback- The callback.
-
readSelectedProperties
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 returncallback- The method to be invoked when the server response is received
-
readPropertiesInCategories
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 returncallback- The method to be invoked when the server response is received
-