Interface Currency.ServiceAsync
-
- All Superinterfaces:
Maskable
,ResultLimitable
,ServiceAsync
- Enclosing class:
- Currency
public static interface Currency.ServiceAsync extends ServiceAsync
-
-
Method Summary
-
Methods inherited from interface com.softlayer.api.ResultLimitable
getLastResponseTotalItemCount, getResultLimit, setResultLimit
-
-
-
-
Method Detail
-
withNewMask
Currency.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
Currency.Mask withMask()
Description copied from interface:Maskable
Use the existing mask on this service or create it if not present
-
setMask
void setMask(Currency.Mask mask)
-
getAllObjects
Future<List<Currency>> getAllObjects()
Async version ofCurrency.Service.getAllObjects()
-
getAllObjects
Future<?> getAllObjects(ResponseHandler<List<Currency>> callback)
-
getObject
Future<Currency> getObject()
Async version ofCurrency.Service.getObject()
-
getObject
Future<?> getObject(ResponseHandler<Currency> callback)
-
getPrice
Future<String> getPrice(BigDecimal price, Format formatOptions)
-
getPrice
Future<?> getPrice(BigDecimal price, Format formatOptions, ResponseHandler<String> callback)
-
getCurrentExchangeRate
Future<ExchangeRate> getCurrentExchangeRate()
Async version ofCurrency.Service.getCurrentExchangeRate()
-
getCurrentExchangeRate
Future<?> getCurrentExchangeRate(ResponseHandler<ExchangeRate> callback)
Async callback version ofCurrency.Service.getCurrentExchangeRate()
-
-