Interface Robot.ServiceAsync
-
- All Superinterfaces:
Maskable
,ResultLimitable
,ServiceAsync
- Enclosing class:
- Robot
public static interface Robot.ServiceAsync extends ServiceAsync
-
-
Method Summary
-
Methods inherited from interface com.softlayer.api.ResultLimitable
getLastResponseTotalItemCount, getResultLimit, setResultLimit
-
-
-
-
Method Detail
-
withNewMask
Robot.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
Robot.Mask withMask()
Description copied from interface:Maskable
Use the existing mask on this service or create it if not present
-
setMask
void setMask(Robot.Mask mask)
-
checkConnection
Future<Boolean> checkConnection()
Async version ofRobot.Service.checkConnection()
-
checkConnection
Future<?> checkConnection(ResponseHandler<Boolean> callback)
-
deployMonitoringAgents
Future<Transaction> deployMonitoringAgents(Group configurationTemplateGroup)
-
deployMonitoringAgents
Future<?> deployMonitoringAgents(Group configurationTemplateGroup, ResponseHandler<Transaction> callback)
-
getAvailableConfigurationGroups
Future<List<Group>> getAvailableConfigurationGroups()
Async version ofRobot.Service.getAvailableConfigurationGroups()
-
getAvailableConfigurationGroups
Future<?> getAvailableConfigurationGroups(ResponseHandler<List<Group>> callback)
-
getObject
Future<Robot> getObject()
Async version ofRobot.Service.getObject()
-
getObject
Future<?> getObject(ResponseHandler<Robot> callback)
-
resetStatus
Future<Boolean> resetStatus()
Async version ofRobot.Service.resetStatus()
-
resetStatus
Future<?> resetStatus(ResponseHandler<Boolean> callback)
-
getAccount
Future<Account> getAccount()
Async version ofRobot.Service.getAccount()
-
getAccount
Future<?> getAccount(ResponseHandler<Account> callback)
Async callback version ofRobot.Service.getAccount()
-
getMonitoringAgents
Future<List<Agent>> getMonitoringAgents()
Async version ofRobot.Service.getMonitoringAgents()
-
getMonitoringAgents
Future<?> getMonitoringAgents(ResponseHandler<List<Agent>> callback)
Async callback version ofRobot.Service.getMonitoringAgents()
-
getRobotStatus
Future<Status> getRobotStatus()
Async version ofRobot.Service.getRobotStatus()
-
getRobotStatus
Future<?> getRobotStatus(ResponseHandler<Status> callback)
Async callback version ofRobot.Service.getRobotStatus()
-
getSoftwareComponent
Future<Component> getSoftwareComponent()
Async version ofRobot.Service.getSoftwareComponent()
-
getSoftwareComponent
Future<?> getSoftwareComponent(ResponseHandler<Component> callback)
Async callback version ofRobot.Service.getSoftwareComponent()
-
-