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)voidsetMask(Employee.Mask mask)Employee.MaskwithMask()Use the existing mask on this service or create it if not presentEmployee.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
Employee.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
Employee.Mask withMask()
Description copied from interface:MaskableUse 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)
-
-