Uses of Class
org.jclouds.sqs.options.ReceiveMessageOptions
-
Packages that use ReceiveMessageOptions Package Description org.jclouds.sqs This package contains an Amazon SQS api implemented byHttpCommandExecutorService
commands.org.jclouds.sqs.features org.jclouds.sqs.options -
-
Uses of ReceiveMessageOptions in org.jclouds.sqs
Methods in org.jclouds.sqs with parameters of type ReceiveMessageOptions Modifier and Type Method Description static com.google.common.collect.FluentIterable<Message>
SQS. receiveAllAtRate(MessageApi api, int messagesPerPage, ReceiveMessageOptions options)
Returns an iterable that lazy fetches messages until there are none left. -
Uses of ReceiveMessageOptions in org.jclouds.sqs.features
Methods in org.jclouds.sqs.features with parameters of type ReceiveMessageOptions Modifier and Type Method Description com.google.common.collect.FluentIterable<Message>
MessageApi. receive(int max, ReceiveMessageOptions options)
same as#receive(URI, int)
except you can provide options like VisibilityTimeout parameter in your request, which will be applied to the messages that SQS returns in the response.Message
MessageApi. receive(ReceiveMessageOptions options)
same as#receive(URI)
except you can provide options like VisibilityTimeout parameter in your request, which will be applied to the messages that SQS returns in the response. -
Uses of ReceiveMessageOptions in org.jclouds.sqs.options
Methods in org.jclouds.sqs.options that return ReceiveMessageOptions Modifier and Type Method Description ReceiveMessageOptions
ReceiveMessageOptions. attribute(String attribute)
static ReceiveMessageOptions
ReceiveMessageOptions.Builder. attribute(String attribute)
ReceiveMessageOptions
ReceiveMessageOptions. attributes(Iterable<String> attributes)
The attribute you want to get.static ReceiveMessageOptions
ReceiveMessageOptions.Builder. attributes(Iterable<String> attributes)
ReceiveMessageOptions
ReceiveMessageOptions. clone()
static ReceiveMessageOptions
ReceiveMessageOptions.Builder. visibilityTimeout(Integer visibilityTimeout)
ReceiveMessageOptions
ReceiveMessageOptions. visibilityTimeout(Integer visibilityTimeout)
The duration (in seconds) that the received messages are hidden from subsequent retrieve requests after being retrieved by a ReceiveMessage request.
-