Class RetryProperties
- java.lang.Object
-
- io.javaoperatorsdk.operator.springboot.starter.RetryProperties
-
public class RetryProperties extends Object
-
-
Constructor Summary
Constructors Constructor Description RetryProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description io.javaoperatorsdk.operator.api.config.RetryConfigurationasRetryConfiguration()LonggetInitialInterval()DoublegetIntervalMultiplier()IntegergetMaxAttempts()LonggetMaxInterval()RetryPropertiessetInitialInterval(Long initialInterval)RetryPropertiessetIntervalMultiplier(Double intervalMultiplier)RetryPropertiessetMaxAttempts(Integer maxAttempts)RetryPropertiessetMaxInterval(Long maxInterval)
-
-
-
Method Detail
-
getMaxAttempts
public Integer getMaxAttempts()
-
setMaxAttempts
public RetryProperties setMaxAttempts(Integer maxAttempts)
-
getInitialInterval
public Long getInitialInterval()
-
setInitialInterval
public RetryProperties setInitialInterval(Long initialInterval)
-
getIntervalMultiplier
public Double getIntervalMultiplier()
-
setIntervalMultiplier
public RetryProperties setIntervalMultiplier(Double intervalMultiplier)
-
getMaxInterval
public Long getMaxInterval()
-
setMaxInterval
public RetryProperties setMaxInterval(Long maxInterval)
-
asRetryConfiguration
public io.javaoperatorsdk.operator.api.config.RetryConfiguration asRetryConfiguration()
-
-