Interface SmallRyeFaultToleranceConfig.StrategiesConfig.BeforeRetryConfig

Enclosing interface:
SmallRyeFaultToleranceConfig.StrategiesConfig

public static interface SmallRyeFaultToleranceConfig.StrategiesConfig.BeforeRetryConfig
  • Method Summary

    Modifier and Type
    Method
    Description
    Whether the @BeforeRetry strategy is enabled.
    Optional<Class<? extends io.smallrye.faulttolerance.api.BeforeRetryHandler>>
    The class of the BeforeRetryHandler to call before retrying.
  • Method Details

    • enabled

      @ConfigDocDefault("true") Optional<Boolean> enabled()
      Whether the @BeforeRetry strategy is enabled.
    • value

      Optional<Class<? extends io.smallrye.faulttolerance.api.BeforeRetryHandler>> value()
      The class of the BeforeRetryHandler to call before retrying.
      See Also:
      • BeforeRetry.value()