Module java4ever.binding
Package tech.deplant.java4ever.binding
Record Class Processing.ParamsOfSendMessage
java.lang.Object
java.lang.Record
tech.deplant.java4ever.binding.Processing.ParamsOfSendMessage
- Record Components:
message- Message BOC.abi- If this parameter is specified and the message has the `expire` header then expiration time will be checked against the current time to prevent unnecessary sending of already expired message. The `message already expired` error will be returned in this case. Note, that specifying `abi` for ABI compliant contracts is strongly recommended, so that proper processing strategy can be chosen. Optional message ABI.sendEvents- Flag for requesting events sending. Default is `false`.
- Enclosing class:
Processing
-
Constructor Summary
ConstructorsConstructorDescriptionParamsOfSendMessage(String message, Abi.ABI abi, Boolean sendEvents) Creates an instance of aParamsOfSendMessagerecord class. -
Method Summary
Modifier and TypeMethodDescriptionabi()Returns the value of theabirecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.message()Returns the value of themessagerecord component.Returns the value of thesendEventsrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ParamsOfSendMessage
Creates an instance of aParamsOfSendMessagerecord class.- Parameters:
message- the value for themessagerecord componentabi- the value for theabirecord componentsendEvents- the value for thesendEventsrecord 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). -
message
-
abi
-
sendEvents
Returns the value of thesendEventsrecord component.- Returns:
- the value of the
sendEventsrecord component
-