Interface Action.ServiceAsync
-
- All Superinterfaces:
Maskable,ResultLimitable,ServiceAsync
- Enclosing class:
- Action
public static interface Action.ServiceAsync extends ServiceAsync
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Future<List<Action>>getAllObjects()Async version ofAction.Service.getAllObjects()Future<?>getAllObjects(ResponseHandler<List<Action>> callback)Future<Action>getObject()Async version ofAction.Service.getObject()Future<?>getObject(ResponseHandler<Action> callback)voidsetMask(Action.Mask mask)Action.MaskwithMask()Use the existing mask on this service or create it if not presentAction.MaskwithNewMask()Overwrite the existing mask on this service with a new one and return it-
Methods inherited from interface com.softlayer.api.ResultLimitable
getLastResponseTotalItemCount, getResultLimit, setResultLimit
-
-
-
-
Method Detail
-
withNewMask
Action.Mask withNewMask()
Description copied from interface:MaskableOverwrite the existing mask on this service with a new one and return it- Specified by:
withNewMaskin interfaceMaskable
-
withMask
Action.Mask withMask()
Description copied from interface:MaskableUse the existing mask on this service or create it if not present
-
setMask
void setMask(Action.Mask mask)
-
getAllObjects
Future<List<Action>> getAllObjects()
Async version ofAction.Service.getAllObjects()
-
getAllObjects
Future<?> getAllObjects(ResponseHandler<List<Action>> callback)
-
getObject
Future<Action> getObject()
Async version ofAction.Service.getObject()
-
getObject
Future<?> getObject(ResponseHandler<Action> callback)
-
-