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 originalMessageif 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 recordThe result of a batch send operation.static final recordThe result of a failed send operation. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theadditionalInformationrecord component.endpoint()Returns the value of theendpointrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.message()Returns the value of themessagerecord component.Returns the value of themessageIdrecord component.final StringtoString()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 aSendResultrecord class.- Parameters:
messageId- the value for themessageIdrecord componentendpoint- the value for theendpointrecord componentmessage- the value for themessagerecord componentadditionalInformation- the value for theadditionalInformationrecord 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 themessageIdrecord component.- Returns:
- the value of the
messageIdrecord component
-
endpoint
Returns the value of theendpointrecord component.- Returns:
- the value of the
endpointrecord component
-
message
Returns the value of themessagerecord component.- Returns:
- the value of the
messagerecord component
-
additionalInformation
Returns the value of theadditionalInformationrecord component.- Returns:
- the value of the
additionalInformationrecord component
-