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