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, Long timeout, Long transactionMaxCount) Creates an instance of aParamsOfQueryTransactionTreerecord class. -
Method Summary
Modifier and TypeMethodDescriptionAbi.ABI[]Returns the value of theabiRegistryrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.inMsg()Returns the value of theinMsgrecord component.timeout()Returns the value of thetimeoutrecord component.final StringtoString()Returns a string representation of this record class.Returns the value of thetransactionMaxCountrecord component.
-
Constructor Details
-
ParamsOfQueryTransactionTree
public ParamsOfQueryTransactionTree(String inMsg, Abi.ABI[] abiRegistry, Long timeout, Long transactionMaxCount) Creates an instance of aParamsOfQueryTransactionTreerecord class.- Parameters:
inMsg- the value for theinMsgrecord componentabiRegistry- the value for theabiRegistryrecord componenttimeout- the value for thetimeoutrecord componenttransactionMaxCount- the value for thetransactionMaxCountrecord 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). -
inMsg
-
abiRegistry
Returns the value of theabiRegistryrecord component.- Returns:
- the value of the
abiRegistryrecord component
-
timeout
-
transactionMaxCount
Returns the value of thetransactionMaxCountrecord component.- Returns:
- the value of the
transactionMaxCountrecord component
-