Record Class HandlerConfig.FailureConfig
java.lang.Object
java.lang.Record
com.inductiveautomation.eventstream.config.HandlerConfig.FailureConfig
- Record Components:
type
- Type of failure strategyretryPolicy
- Retry policy to use
- All Implemented Interfaces:
Serializable
- Enclosing class:
- HandlerConfig
public static record HandlerConfig.FailureConfig(HandlerConfig.FailureConfig.Type type, @Nullable HandlerConfig.RetryPolicy retryPolicy)
extends Record
implements Serializable
Defines how to handle Handler failures
- See Also:
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final HandlerConfig.FailureConfig
static final HandlerConfig.FailureConfig
-
Constructor Summary
ConstructorsConstructorDescriptionFailureConfig
(HandlerConfig.FailureConfig.Type type, HandlerConfig.RetryPolicy retryPolicy) Creates an instance of aFailureConfig
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.Returns the value of theretryPolicy
record component.final String
toString()
Returns a string representation of this record class.type()
Returns the value of thetype
record component.
-
Field Details
-
ABORT
-
IGNORE
-
-
Constructor Details
-
FailureConfig
public FailureConfig(HandlerConfig.FailureConfig.Type type, @Nullable HandlerConfig.RetryPolicy retryPolicy) Creates an instance of aFailureConfig
record class.- Parameters:
type
- the value for thetype
record componentretryPolicy
- the value for theretryPolicy
record 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)
. -
type
Returns the value of thetype
record component.- Returns:
- the value of the
type
record component
-
retryPolicy
Returns the value of theretryPolicy
record component.- Returns:
- the value of the
retryPolicy
record component
-