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
- If some of the following messages and transactions are missing yet The maximum waiting time is regulated by this option. Default value is 60000 (1 min). If `timeout` is set to 0 then function will wait infinitely until the whole transaction tree is executed Timeout used to limit waiting time for the missing messages and transaction.transactionMaxCount
- If transaction tree contains more transaction then this parameter then only first `transaction_max_count` transaction are awaited and returned. Default value is 50. If `transaction_max_count` is set to 0 then no limitation on transaction count is used and all transaction are returned. Maximum transaction count to wait.
- Enclosing class:
Net
-
Constructor Summary
ConstructorsConstructorDescriptionParamsOfQueryTransactionTree
(String inMsg, Abi.ABI[] abiRegistry, Integer timeout, Integer transactionMaxCount) 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.Returns the value of thetransactionMaxCount
record component.
-
Constructor Details
-
ParamsOfQueryTransactionTree
public ParamsOfQueryTransactionTree(String inMsg, Abi.ABI[] abiRegistry, Integer timeout, Integer transactionMaxCount) 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 componenttransactionMaxCount
- the value for thetransactionMaxCount
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
-
transactionMaxCount
Returns the value of thetransactionMaxCount
record component.- Returns:
- the value of the
transactionMaxCount
record component
-