SendMessageResult Class

Definition

The object returned in the QueueMessageList array when calling Put Message on a Queue.

public final class SendMessageResult
Inheritance
java.lang.Object
SendMessageResult

Inherited Members

java.lang.Object.clone() java.lang.Object.equals(java.lang.Object) java.lang.Object.finalize() java.lang.Object.getClass() java.lang.Object.hashCode() java.lang.Object.notify() java.lang.Object.notifyAll() java.lang.Object.toString() java.lang.Object.wait() java.lang.Object.wait(long) java.lang.Object.wait(long,int)

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.

Applies to