Record Class StateMachine.NotificationValue.Failure
java.lang.Object
java.lang.Record
dev.restate.sdk.core.StateMachine.NotificationValue.Failure
- All Implemented Interfaces:
StateMachine.NotificationValue
- Enclosing interface:
StateMachine.NotificationValue
public static record StateMachine.NotificationValue.Failure(TerminalException exception)
extends Record
implements StateMachine.NotificationValue
-
Nested Class Summary
Nested classes/interfaces inherited from interface StateMachine.NotificationValue
StateMachine.NotificationValue.Empty, StateMachine.NotificationValue.Failure, StateMachine.NotificationValue.InvocationId, StateMachine.NotificationValue.StateKeys, StateMachine.NotificationValue.Success -
Constructor Summary
ConstructorsConstructorDescriptionFailure(TerminalException exception) Creates an instance of aFailurerecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.Returns the value of theexceptionrecord component.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Failure
Creates an instance of aFailurerecord class.- Parameters:
exception- the value for theexceptionrecord 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). -
exception
Returns the value of theexceptionrecord component.- Returns:
- the value of the
exceptionrecord component
-