Package io.awspring.cloud.sqs.operations
Record Class SendResult<T>
java.lang.Object
java.lang.Record
io.awspring.cloud.sqs.operations.SendResult<T>
- Type Parameters:
T
- the message payload type.- Record Components:
messageId
- the message id as returned by the endpoint if successful, the id from the originalMessage
if failed.message
- the message that was sent, with any additional headers added by the framework.additionalInformation
- additional information on the send operation.
public record SendResult<T>(UUID messageId, String endpoint, Message<T> message, Map<String,Object> additionalInformation)
extends Record
The result of a send operation.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final record
The result of a batch send operation.static final record
The result of a failed send operation. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theadditionalInformation
record component.endpoint()
Returns the value of theendpoint
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.message()
Returns the value of themessage
record component.Returns the value of themessageId
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
SendResult
public SendResult(UUID messageId, String endpoint, Message<T> message, Map<String, Object> additionalInformation) Creates an instance of aSendResult
record class.- Parameters:
messageId
- the value for themessageId
record componentendpoint
- the value for theendpoint
record componentmessage
- the value for themessage
record componentadditionalInformation
- the value for theadditionalInformation
record component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object)
. -
messageId
Returns the value of themessageId
record component.- Returns:
- the value of the
messageId
record component
-
endpoint
Returns the value of theendpoint
record component.- Returns:
- the value of the
endpoint
record component
-
message
Returns the value of themessage
record component.- Returns:
- the value of the
message
record component
-
additionalInformation
Returns the value of theadditionalInformation
record component.- Returns:
- the value of the
additionalInformation
record component
-