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