Interface SmallRyeFaultToleranceConfig.StrategiesConfig.FallbackConfig
- Enclosing interface:
- SmallRyeFaultToleranceConfig.StrategiesConfig
public static interface SmallRyeFaultToleranceConfig.StrategiesConfig.FallbackConfig
-
Method Summary
Modifier and TypeMethodDescriptionapplyOn()The exception types that are considered failures and hence should trigger fallback.enabled()Whether the@Fallbackstrategy is enabled.skipOn()The exception types that are not considered failures and hence should not trigger fallback.value()The class of theFallbackHandlerto call on fallback.
-
Method Details
-
enabled
Whether the@Fallbackstrategy is enabled. -
applyOn
The exception types that are considered failures and hence should trigger fallback.- See Also:
-
Fallback.applyOn()
-
skipOn
The exception types that are not considered failures and hence should not trigger fallback. Takes priority overapplyOn()}.- See Also:
-
Fallback.skipOn()
-
value
The class of theFallbackHandlerto call on fallback.- See Also:
-
Fallback.value()
-