Annotation Type ExponentialBackoffRetry
-
@Retention(RUNTIME) @Target(METHOD) public @interface ExponentialBackoffRetryDefines an exponential backoff retry strategy, where the delay between retries will get progressively larger, limited by the max/min specified.
- Since:
- 1.0.0
-
-
Required Element Summary
Required Elements Modifier and Type Required Element Description java.lang.StringmaximumIntervalThe maximum delay interval.intmaxRetryCountThe maximum number of retries that will be attempted.java.lang.StringminimumIntervalThe minimum delay interval.
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description java.lang.StringstrategyThe strategy of retries that will be used internally.
-