Uses of Record Class
io.awspring.cloud.sqs.operations.SendResult.Batch
Packages that use SendResult.Batch
Package
Description
Components for converting source messages to Spring messaging messages.
-
Uses of SendResult.Batch in io.awspring.cloud.sqs.operations
Methods in io.awspring.cloud.sqs.operations that return SendResult.BatchModifier and TypeMethodDescriptionSendBatchOperationFailedException.getSendBatchResult()
Get the detailed result of the batch send attempt.<T> SendResult.Batch<T>
SendBatchOperationFailedException.getSendBatchResult
(Class<T> payloadClass) Get the detailed result of the batch send attempt, casting the result to the provided payload type.<T> SendResult.Batch<T>
AbstractMessagingTemplate.sendMany
(String endpointName, Collection<Message<T>> messages) <T> SendResult.Batch<T>
MessagingOperations.sendMany
(String queue, Collection<Message<T>> messages) Send the provided messages along with their headers to the provided queue.Methods in io.awspring.cloud.sqs.operations that return types with arguments of type SendResult.BatchModifier and TypeMethodDescriptionprotected abstract <T> CompletableFuture<SendResult.Batch<T>>
AbstractMessagingTemplate.doSendBatchAsync
(String endpointName, Collection<S> messages, Collection<Message<T>> originalMessages) protected <T> CompletableFuture<SendResult.Batch<T>>
SqsTemplate.doSendBatchAsync
(String endpointName, Collection<software.amazon.awssdk.services.sqs.model.Message> messages, Collection<Message<T>> originalMessages) <T> CompletableFuture<SendResult.Batch<T>>
AbstractMessagingTemplate.sendManyAsync
(String endpointName, Collection<Message<T>> messages) <T> CompletableFuture<SendResult.Batch<T>>
AsyncMessagingOperations.sendManyAsync
(String queue, Collection<Message<T>> messages) Send the provided messages along with their headers to the provided queue.Constructors in io.awspring.cloud.sqs.operations with parameters of type SendResult.BatchModifierConstructorDescriptionSendBatchOperationFailedException
(String msg, String endpoint, SendResult.Batch<?> sendBatchResult) Create an instance with the provided arguments.SendBatchOperationFailedException
(String msg, String endpoint, SendResult.Batch<?> sendBatchResult, Throwable cause) Create an instance with the provided arguments.