Interface Rule.ServiceAsync
-
- All Superinterfaces:
Maskable
,ResultLimitable
,ServiceAsync
- Enclosing class:
- Rule
public static interface Rule.ServiceAsync extends ServiceAsync
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Future<List<Rule>>
getAllObjects()
Async version ofRule.Service.getAllObjects()
Future<?>
getAllObjects(ResponseHandler<List<Rule>> callback)
Future<Rule>
getObject()
Async version ofRule.Service.getObject()
Future<?>
getObject(ResponseHandler<Rule> callback)
void
setMask(Rule.Mask mask)
Rule.Mask
withMask()
Use the existing mask on this service or create it if not presentRule.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
Rule.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
Rule.Mask withMask()
Description copied from interface:Maskable
Use the existing mask on this service or create it if not present
-
setMask
void setMask(Rule.Mask mask)
-
getAllObjects
Future<List<Rule>> getAllObjects()
Async version ofRule.Service.getAllObjects()
-
getAllObjects
Future<?> getAllObjects(ResponseHandler<List<Rule>> callback)
-
getObject
Future<Rule> getObject()
Async version ofRule.Service.getObject()
-
getObject
Future<?> getObject(ResponseHandler<Rule> callback)
-
-