Interface SmallRyeFaultToleranceConfig.StrategiesConfig.CustomBackoffConfig

Enclosing interface:
SmallRyeFaultToleranceConfig.StrategiesConfig

public static interface SmallRyeFaultToleranceConfig.StrategiesConfig.CustomBackoffConfig
  • Method Summary

    Modifier and Type
    Method
    Description
    Whether the @CustomBackoff strategy is enabled.
    Optional<Class<? extends io.smallrye.faulttolerance.api.CustomBackoffStrategy>>
    The class of the CustomBackoffStrategy that will be used to compute retry delays.
  • Method Details

    • enabled

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

      Optional<Class<? extends io.smallrye.faulttolerance.api.CustomBackoffStrategy>> value()
      The class of the CustomBackoffStrategy that will be used to compute retry delays.
      See Also:
      • CustomBackoff.value()