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

public static record Net.ParamsOfQueryTransactionTree(String inMsg, Abi.ABI[] abiRegistry, Integer timeout, Integer transactionMaxCount) extends Record
  • Constructor Details

    • ParamsOfQueryTransactionTree

      public ParamsOfQueryTransactionTree(String inMsg, Abi.ABI[] abiRegistry, Integer timeout, Integer transactionMaxCount)
      Creates an instance of a ParamsOfQueryTransactionTree record class.
      Parameters:
      inMsg - the value for the inMsg record component
      abiRegistry - the value for the abiRegistry record component
      timeout - the value for the timeout record component
      transactionMaxCount - the value for the transactionMaxCount record component
  • Method Details

    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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 with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • inMsg

      public String inMsg()
      Returns the value of the inMsg record component.
      Returns:
      the value of the inMsg record component
    • abiRegistry

      public Abi.ABI[] abiRegistry()
      Returns the value of the abiRegistry record component.
      Returns:
      the value of the abiRegistry record component
    • timeout

      public Integer timeout()
      Returns the value of the timeout record component.
      Returns:
      the value of the timeout record component
    • transactionMaxCount

      public Integer transactionMaxCount()
      Returns the value of the transactionMaxCount record component.
      Returns:
      the value of the transactionMaxCount record component