public class ChangeMessageVisibilityRequest extends AmazonWebServiceRequest implements java.io.Serializable
Changes the visibility timeout of a specified message in a queue to a new value. The maximum allowed timeout value you can set the value to is 12 hours. This means you can't extend the timeout of a message in an existing queue to more than a total visibility timeout of 12 hours. (For more information visibility timeout, see Visibility Timeout in the Amazon SQS Developer Guide.)
For example, let's say you have a message and its default message visibility
timeout is 5 minutes. After 3 minutes, you call
ChangeMessageVisiblity
with a timeout of 10 minutes. At that
time, the timeout for the message would be extended by 10 minutes beyond the
time of the ChangeMessageVisibility call. This results in a total visibility
timeout of 13 minutes. You can continue to call ChangeMessageVisibility to
extend the visibility timeout to a maximum of 12 hours. If you try to extend
beyond 12 hours, the request will be rejected.
There is a 120,000 limit for the number of inflight messages per queue. Messages are inflight after they have been received from the queue by a consuming component, but have not yet been deleted from the queue. If you reach the 120,000 limit, you will receive an OverLimit error message from Amazon SQS. To help avoid reaching the limit, you should delete the messages from the queue after they have been processed. You can also increase the number of queues you use to process the messages.
If you attempt to set the VisibilityTimeout
to an amount more
than the maximum time left, Amazon SQS returns an error. It will not
automatically recalculate and increase the timeout to the maximum time
remaining.
Unlike with a queue, when you change the visibility timeout for a specific
message, that timeout value is applied immediately but is not saved in memory
for that message. If you don't delete a message after it is received, the
visibility timeout for the message the next time it is received reverts to
the original timeout value, not the value you set with the
ChangeMessageVisibility
action.
Constructor and Description |
---|
ChangeMessageVisibilityRequest()
Default constructor for ChangeMessageVisibilityRequest object.
|
ChangeMessageVisibilityRequest(java.lang.String queueUrl,
java.lang.String receiptHandle,
java.lang.Integer visibilityTimeout)
Constructs a new ChangeMessageVisibilityRequest object.
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getQueueUrl()
The URL of the Amazon SQS queue to take action on.
|
java.lang.String |
getReceiptHandle()
The receipt handle associated with the message whose visibility timeout
should be changed.
|
java.lang.Integer |
getVisibilityTimeout()
The new value (in seconds - from 0 to 43200 - maximum 12 hours) for the
message's visibility timeout.
|
int |
hashCode() |
void |
setQueueUrl(java.lang.String queueUrl)
The URL of the Amazon SQS queue to take action on.
|
void |
setReceiptHandle(java.lang.String receiptHandle)
The receipt handle associated with the message whose visibility timeout
should be changed.
|
void |
setVisibilityTimeout(java.lang.Integer visibilityTimeout)
The new value (in seconds - from 0 to 43200 - maximum 12 hours) for the
message's visibility timeout.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
ChangeMessageVisibilityRequest |
withQueueUrl(java.lang.String queueUrl)
The URL of the Amazon SQS queue to take action on.
|
ChangeMessageVisibilityRequest |
withReceiptHandle(java.lang.String receiptHandle)
The receipt handle associated with the message whose visibility timeout
should be changed.
|
ChangeMessageVisibilityRequest |
withVisibilityTimeout(java.lang.Integer visibilityTimeout)
The new value (in seconds - from 0 to 43200 - maximum 12 hours) for the
message's visibility timeout.
|
clone, getCloneRoot, getCloneSource, getGeneralProgressListener, getRequestClientOptions, getRequestCredentials, getRequestMetricCollector, setGeneralProgressListener, setRequestCredentials, setRequestMetricCollector, withGeneralProgressListener, withRequestMetricCollector
public ChangeMessageVisibilityRequest()
public ChangeMessageVisibilityRequest(java.lang.String queueUrl, java.lang.String receiptHandle, java.lang.Integer visibilityTimeout)
queueUrl
- The URL of the Amazon SQS queue to take action on.
Queue URLs are case-sensitive.
receiptHandle
- The receipt handle associated with the message whose visibility timeout should be changed. This parameter is returned by the ReceiveMessage action.
visibilityTimeout
- The new value (in seconds - from 0 to 43200 - maximum 12 hours) for the message's visibility timeout.
public java.lang.String getQueueUrl()
The URL of the Amazon SQS queue to take action on.
Queue URLs are case-sensitive.
The URL of the Amazon SQS queue to take action on.
Queue URLs are case-sensitive.
public void setQueueUrl(java.lang.String queueUrl)
The URL of the Amazon SQS queue to take action on.
Queue URLs are case-sensitive.
queueUrl
- The URL of the Amazon SQS queue to take action on.
Queue URLs are case-sensitive.
public ChangeMessageVisibilityRequest withQueueUrl(java.lang.String queueUrl)
The URL of the Amazon SQS queue to take action on.
Queue URLs are case-sensitive.
Returns a reference to this object so that method calls can be chained together.
queueUrl
- The URL of the Amazon SQS queue to take action on.
Queue URLs are case-sensitive.
public java.lang.String getReceiptHandle()
The receipt handle associated with the message whose visibility timeout should be changed. This parameter is returned by the ReceiveMessage action.
The receipt handle associated with the message whose visibility timeout should be changed. This parameter is returned by the ReceiveMessage action.
public void setReceiptHandle(java.lang.String receiptHandle)
The receipt handle associated with the message whose visibility timeout should be changed. This parameter is returned by the ReceiveMessage action.
receiptHandle
- The receipt handle associated with the message whose visibility timeout should be changed. This parameter is returned by the ReceiveMessage action.
public ChangeMessageVisibilityRequest withReceiptHandle(java.lang.String receiptHandle)
The receipt handle associated with the message whose visibility timeout should be changed. This parameter is returned by the ReceiveMessage action.
Returns a reference to this object so that method calls can be chained together.
receiptHandle
- The receipt handle associated with the message whose visibility timeout should be changed. This parameter is returned by the ReceiveMessage action.
public java.lang.Integer getVisibilityTimeout()
The new value (in seconds - from 0 to 43200 - maximum 12 hours) for the message's visibility timeout.
The new value (in seconds - from 0 to 43200 - maximum 12 hours) for the message's visibility timeout.
public void setVisibilityTimeout(java.lang.Integer visibilityTimeout)
The new value (in seconds - from 0 to 43200 - maximum 12 hours) for the message's visibility timeout.
visibilityTimeout
- The new value (in seconds - from 0 to 43200 - maximum 12 hours) for the message's visibility timeout.
public ChangeMessageVisibilityRequest withVisibilityTimeout(java.lang.Integer visibilityTimeout)
The new value (in seconds - from 0 to 43200 - maximum 12 hours) for the message's visibility timeout.
Returns a reference to this object so that method calls can be chained together.
visibilityTimeout
- The new value (in seconds - from 0 to 43200 - maximum 12 hours) for the message's visibility timeout.
public java.lang.String toString()
toString
in class java.lang.Object
Object.toString()
public int hashCode()
hashCode
in class java.lang.Object
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
Copyright © 2018 Amazon Web Services, Inc. All Rights Reserved.