Uses of Class
org.jclouds.sqs.domain.BatchResult
-
Packages that use BatchResult Package Description org.jclouds.sqs.domain org.jclouds.sqs.features org.jclouds.sqs.xml -
-
Uses of BatchResult in org.jclouds.sqs.domain
Methods in org.jclouds.sqs.domain that return BatchResult Modifier and Type Method Description BatchResult<V>
BatchResult.Builder. build()
Methods in org.jclouds.sqs.domain with parameters of type BatchResult Modifier and Type Method Description BatchResult.Builder<V>
BatchResult.Builder. fromBatchResult(BatchResult<V> in)
-
Uses of BatchResult in org.jclouds.sqs.features
Methods in org.jclouds.sqs.features that return BatchResult Modifier and Type Method Description BatchResult<String>
MessageApi. changeVisibility(com.google.common.collect.Table<String,String,Integer> idReceiptHandleVisibilityTimeout)
Currently, you can send up to 10MessageApi.changeVisibility(java.lang.String, int)
requests.BatchResult<String>
MessageApi. changeVisibility(Iterable<String> receiptHandles, int visibilityTimeout)
Same asMessageApi.changeVisibility(Map, int)
, except that we generate numeric ids starting with1
BatchResult<MessageIdAndMD5>
MessageApi. changeVisibility(Map<String,Integer> receiptHandleVisibilityTimeout)
Same asMessageApi.changeVisibility(Table)
, except that we generate numeric ids starting with1
BatchResult<String>
MessageApi. changeVisibility(Map<String,String> idReceiptHandle, int visibilityTimeout)
Currently, you can send up to 10MessageApi.changeVisibility(java.lang.String, int)
requests.BatchResult<String>
MessageApi. delete(Iterable<String> receiptHandles)
Same asMessageApi.delete(Map)
, except that we generate numeric ids starting with1
BatchResult<String>
MessageApi. delete(Map<String,String> idReceiptHandle)
Currently, you can send up to 10MessageApi.delete(java.lang.String)
requests.BatchResult<? extends MessageIdAndMD5>
MessageApi. send(Iterable<String> messageBodies)
Same asMessageApi.send(Map)
, except that we generate numeric ids starting with1
BatchResult<? extends MessageIdAndMD5>
MessageApi. send(Map<String,String> idMessageBody)
The SendMessageBatch action delivers up to ten messages to the specified queue.BatchResult<? extends MessageIdAndMD5>
MessageApi. sendWithDelay(Iterable<String> messageBodies, int delaySeconds)
Same asMessageApi.sendWithDelay(Map, int)
, except that we generate numeric ids starting with1
BatchResult<? extends MessageIdAndMD5>
MessageApi. sendWithDelay(Map<String,String> idMessageBody, int delaySeconds)
Same asMessageApi.send(Map)
except you set a delay for all messages in the requestBatchResult<? extends MessageIdAndMD5>
MessageApi. sendWithDelays(com.google.common.collect.Table<String,String,Integer> idMessageBodyDelaySeconds)
Same asMessageApi.send(Map)
except you can set a delay for each message in the request.BatchResult<? extends MessageIdAndMD5>
MessageApi. sendWithDelays(Map<String,Integer> messageBodyDelaySeconds)
Same asMessageApi.sendWithDelays(Table)
, except that we generate numeric ids starting with1
-
Uses of BatchResult in org.jclouds.sqs.xml
Methods in org.jclouds.sqs.xml that return BatchResult Modifier and Type Method Description BatchResult<V>
BatchResponseHandler. getResult()
-