SendMessageResult Class
Definition
The object returned in the QueueMessageList array when calling Put Message on a Queue.
public final class SendMessageResult
- Inheritance
-
java.lang.ObjectSendMessageResult
Inherited Members
Constructors
| SendMessageResult() |
Methods
| getExpirationTime() |
Get the expirationTime property: The time that the Message will expire and be automatically deleted. |
| getInsertionTime() |
Get the insertionTime property: The time the Message was inserted into the Queue. |
| getMessageId() |
Get the messageId property: The Id of the Message. |
| getPopReceipt() |
Get the popReceipt property: This value is required to delete the Message. If deletion fails using this popreceipt then the message has been dequeued by another client. |
| getTimeNextVisible() |
Get the timeNextVisible property: The time that the message will again become visible in the Queue. |
| setExpirationTime(OffsetDateTime expirationTime) |
Set the expirationTime property: The time that the Message will expire and be automatically deleted. |
| setInsertionTime(OffsetDateTime insertionTime) |
Set the insertionTime property: The time the Message was inserted into the Queue. |
| setMessageId(String messageId) |
Set the messageId property: The Id of the Message. |
| setPopReceipt(String popReceipt) |
Set the popReceipt property: This value is required to delete the Message. If deletion fails using this popreceipt then the message has been dequeued by another client. |
| setTimeNextVisible(OffsetDateTime timeNextVisible) |
Set the timeNextVisible property: The time that the message will again become visible in the Queue. |