Module java4ever.binding
Package tech.deplant.java4ever.binding
Record Class Processing.ResultOfSendMessage
java.lang.Object
java.lang.Record
tech.deplant.java4ever.binding.Processing.ResultOfSendMessage
- Record Components:
shardBlockId
- This block id must be used as a parameter of the `wait_for_transaction`. The last generated shard block of the message destination account before the message was sent.sendingEndpoints
- This list id must be used as a parameter of the `wait_for_transaction`. The list of endpoints to which the message was sent.
- Enclosing class:
Processing
-
Constructor Summary
ConstructorsConstructorDescriptionResultOfSendMessage
(String shardBlockId, String[] sendingEndpoints) Creates an instance of aResultOfSendMessage
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.String[]
Returns the value of thesendingEndpoints
record component.Returns the value of theshardBlockId
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
ResultOfSendMessage
Creates an instance of aResultOfSendMessage
record class.- Parameters:
shardBlockId
- the value for theshardBlockId
record componentsendingEndpoints
- the value for thesendingEndpoints
record component
-
-
Method Details
-
toString
-
hashCode
-
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)
. -
shardBlockId
Returns the value of theshardBlockId
record component.- Returns:
- the value of the
shardBlockId
record component
-
sendingEndpoints
Returns the value of thesendingEndpoints
record component.- Returns:
- the value of the
sendingEndpoints
record component
-