Package io.awspring.cloud.sqs.operations
Record Class SendResult.Failed<T>
java.lang.Object
java.lang.Record
io.awspring.cloud.sqs.operations.SendResult.Failed<T>
- Type Parameters:
T
- the message payload type.- Record Components:
errorMessage
- a message with information on the error.
- Enclosing class:
- SendResult<T>
public static record SendResult.Failed<T>(String errorMessage, String endpoint, Message<T> message, Map<String,Object> additionalInformation)
extends 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.Returns the value of theerrorMessage
record component.final int
hashCode()
Returns a hash code value for this object.message()
Returns the value of themessage
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
Failed
public Failed(String errorMessage, String endpoint, Message<T> message, Map<String, Object> additionalInformation) Creates an instance of aFailed
record class.- Parameters:
errorMessage
- the value for theerrorMessage
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)
. -
errorMessage
Returns the value of theerrorMessage
record component.- Returns:
- the value of the
errorMessage
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
-