Record Class CatchEventBehavior.CatchEvent
java.lang.Object
java.lang.Record
io.camunda.zeebe.engine.processing.common.CatchEventBehavior.CatchEvent
- Enclosing class:
CatchEventBehavior
public static record CatchEventBehavior.CatchEvent(ExecutableCatchEvent element, org.agrona.DirectBuffer messageName, Timer timer)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionCatchEvent(ExecutableCatchEvent element, org.agrona.DirectBuffer messageName, Timer timer) Creates an instance of aCatchEventrecord class. -
Method Summary
Modifier and TypeMethodDescriptionelement()Returns the value of theelementrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.org.agrona.DirectBufferReturns the value of themessageNamerecord component.timer()Returns the value of thetimerrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
CatchEvent
Creates an instance of aCatchEventrecord class.- Parameters:
element- the value for theelementrecord componentmessageName- the value for themessageNamerecord componenttimer- the value for thetimerrecord 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). -
element
Returns the value of theelementrecord component.- Returns:
- the value of the
elementrecord component
-
messageName
public org.agrona.DirectBuffer messageName()Returns the value of themessageNamerecord component.- Returns:
- the value of the
messageNamerecord component
-
timer
Returns the value of thetimerrecord component.- Returns:
- the value of the
timerrecord component
-