Module java4ever.binding
Package tech.deplant.java4ever.binding
Record Class Net.ParamsOfQueryTransactionTree
java.lang.Object
java.lang.Record
tech.deplant.java4ever.binding.Net.ParamsOfQueryTransactionTree
- Record Components:
inMsg
- Input message id.abiRegistry
- List of contract ABIs that will be used to decode message bodies. Library will try to decode each returned message body using any ABI from the registry.timeout
- Timeout used to limit waiting time for the missing messages and transaction. If some of the following messages and transactions are missing yetThe maximum waiting time is regulated by this option.Default value is 60000 (1 min).
- Enclosing class:
Net
-
Constructor Summary
ConstructorsConstructorDescriptionParamsOfQueryTransactionTree
(String inMsg, Abi.ABI[] abiRegistry, Number timeout) Creates an instance of aParamsOfQueryTransactionTree
record class. -
Method Summary
Modifier and TypeMethodDescriptionAbi.ABI[]
Returns the value of theabiRegistry
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.inMsg()
Returns the value of theinMsg
record component.timeout()
Returns the value of thetimeout
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
ParamsOfQueryTransactionTree
Creates an instance of aParamsOfQueryTransactionTree
record class.- Parameters:
inMsg
- the value for theinMsg
record componentabiRegistry
- the value for theabiRegistry
record componenttimeout
- the value for thetimeout
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)
. -
inMsg
Returns the value of theinMsg
record component.- Returns:
- the value of the
inMsg
record component
-
abiRegistry
Returns the value of theabiRegistry
record component.- Returns:
- the value of the
abiRegistry
record component
-
timeout
Returns the value of thetimeout
record component.- Returns:
- the value of the
timeout
record component
-