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