Interface Mobile.ServiceAsync
-
- All Superinterfaces:
Maskable
,ResultLimitable
,ServiceAsync
,Subscriber.ServiceAsync
- Enclosing class:
- Mobile
public static interface Mobile.ServiceAsync extends Subscriber.ServiceAsync
-
-
Method Summary
Modifier and Type Method Description Future<Boolean>
clearSnoozeTimer()
Async version ofMobile.Service.clearSnoozeTimer()
Future<?>
clearSnoozeTimer(ResponseHandler<Boolean> callback)
Future<Mobile>
getObjectForMobile()
Async version ofMobile.Service.getObjectForMobile()
Future<?>
getObjectForMobile(ResponseHandler<Mobile> callback)
void
setMask(Mobile.Mask mask)
Future<Boolean>
setSnoozeTimer(Long start, Long end)
Async version ofMobile.Service.setSnoozeTimer(java.lang.Long, java.lang.Long)
Future<?>
setSnoozeTimer(Long start, Long end, ResponseHandler<Boolean> callback)
Mobile.Mask
withMask()
Use the existing mask on this service or create it if not presentMobile.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
-
Methods inherited from interface com.softlayer.api.service.notification.user.Subscriber.ServiceAsync
createObject, createObject, editObject, editObject, getDeliveryMethods, getDeliveryMethods, getNotification, getNotification, getObject, getObject, getPreferences, getPreferences, getPreferencesDetails, getPreferencesDetails, getResourceRecord, getResourceRecord, getUserRecord, getUserRecord, setMask
-
-
-
-
Method Detail
-
withNewMask
Mobile.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
- Specified by:
withNewMask
in interfaceSubscriber.ServiceAsync
-
withMask
Mobile.Mask withMask()
Description copied from interface:Maskable
Use the existing mask on this service or create it if not present- Specified by:
withMask
in interfaceMaskable
- Specified by:
withMask
in interfaceSubscriber.ServiceAsync
-
setMask
void setMask(Mobile.Mask mask)
-
clearSnoozeTimer
Future<Boolean> clearSnoozeTimer()
Async version ofMobile.Service.clearSnoozeTimer()
-
clearSnoozeTimer
Future<?> clearSnoozeTimer(ResponseHandler<Boolean> callback)
-
getObjectForMobile
Future<Mobile> getObjectForMobile()
Async version ofMobile.Service.getObjectForMobile()
-
getObjectForMobile
Future<?> getObjectForMobile(ResponseHandler<Mobile> callback)
-
setSnoozeTimer
Future<Boolean> setSnoozeTimer(Long start, Long end)
Async version ofMobile.Service.setSnoozeTimer(java.lang.Long, java.lang.Long)
-
setSnoozeTimer
Future<?> setSnoozeTimer(Long start, Long end, ResponseHandler<Boolean> callback)
-
-