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 aResultOfSendMessagerecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.String[]Returns the value of thesendingEndpointsrecord component.Returns the value of theshardBlockIdrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ResultOfSendMessage
Creates an instance of aResultOfSendMessagerecord class.- Parameters:
shardBlockId- the value for theshardBlockIdrecord componentsendingEndpoints- the value for thesendingEndpointsrecord 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 theshardBlockIdrecord component.- Returns:
- the value of the
shardBlockIdrecord component
-
sendingEndpoints
Returns the value of thesendingEndpointsrecord component.- Returns:
- the value of the
sendingEndpointsrecord component
-