Uses of Class
com.azure.storage.queue.models.SendMessageResult
Packages that use SendMessageResult
Package
Description
This package contains the classes to perform actions on Azure Storage Queue.
Package containing the data models for AzureQueueStorage.
-
Uses of SendMessageResult in com.azure.storage.queue
Methods in com.azure.storage.queue that return SendMessageResultModifier and TypeMethodDescriptionQueueClient.sendMessage
(com.azure.core.util.BinaryData message) Sends a message that has a time-to-live of 7 days and is instantly visible.QueueClient.sendMessage
(String messageText) Sends a message that has a time-to-live of 7 days and is instantly visible.Methods in com.azure.storage.queue that return types with arguments of type SendMessageResultModifier and TypeMethodDescriptionQueueAsyncClient.sendMessage
(com.azure.core.util.BinaryData message) Enqueues a message that has a time-to-live of 7 days and is instantly visible.QueueAsyncClient.sendMessage
(String messageText) Enqueues a message that has a time-to-live of 7 days and is instantly visible.Mono
<com.azure.core.http.rest.Response<SendMessageResult>> QueueAsyncClient.sendMessageWithResponse
(com.azure.core.util.BinaryData message, Duration visibilityTimeout, Duration timeToLive) Enqueues a message with a given time-to-live and a timeout period where the message is invisible in the queue.Mono
<com.azure.core.http.rest.Response<SendMessageResult>> QueueAsyncClient.sendMessageWithResponse
(String messageText, Duration visibilityTimeout, Duration timeToLive) Enqueues a message with a given time-to-live and a timeout period where the message is invisible in the queue.com.azure.core.http.rest.Response
<SendMessageResult> QueueClient.sendMessageWithResponse
(com.azure.core.util.BinaryData message, Duration visibilityTimeout, Duration timeToLive, Duration timeout, com.azure.core.util.Context context) Sends a message with a given time-to-live and a timeout period where the message is invisible in the queue.com.azure.core.http.rest.Response
<SendMessageResult> QueueClient.sendMessageWithResponse
(String messageText, Duration visibilityTimeout, Duration timeToLive, Duration timeout, com.azure.core.util.Context context) Sends a message with a given time-to-live and a timeout period where the message is invisible in the queue. -
Uses of SendMessageResult in com.azure.storage.queue.models
Methods in com.azure.storage.queue.models that return SendMessageResultModifier and TypeMethodDescriptionstatic SendMessageResult
SendMessageResult.fromXml
(com.azure.xml.XmlReader xmlReader) Reads an instance of SendMessageResult from the XmlReader.static SendMessageResult
Reads an instance of SendMessageResult from the XmlReader.SendMessageResult.setExpirationTime
(OffsetDateTime expirationTime) Set the expirationTime property: The time that the Message will expire and be automatically deleted.SendMessageResult.setInsertionTime
(OffsetDateTime insertionTime) Set the insertionTime property: The time the Message was inserted into the Queue.SendMessageResult.setMessageId
(String messageId) Set the messageId property: The Id of the Message.SendMessageResult.setPopReceipt
(String popReceipt) Set the popReceipt property: This value is required to delete the Message.SendMessageResult.setTimeNextVisible
(OffsetDateTime timeNextVisible) Set the timeNextVisible property: The time that the message will again become visible in the Queue.