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)
void
setMask(Action.Mask mask)
Action.Mask
withMask()
Use the existing mask on this service or create it if not presentAction.Mask
withNewMask()
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:Maskable
Overwrite the existing mask on this service with a new one and return it- Specified by:
withNewMask
in interfaceMaskable
-
withMask
Action.Mask withMask()
Description copied from interface:Maskable
Use 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)
-
-