spring-retry
spring-retry copied to clipboard
Class: `org.springframework.retry.backoff.FixedBackOffPolicy` Method: `public void setBackOffPeriod(long backOffPeriod)` source code: ``` private static final long DEFAULT_BACK_OFF_PERIOD = 1000L; private volatile long backOffPeriod = DEFAULT_BACK_OFF_PERIOD; ....//omit public void setBackOffPeriod(long backOffPeriod) { this.backOffPeriod...
> Glenn Renfro opened BATCH-2645 and commented > This section has no example. It could use one (or more) to show how to inject > RetryContextCache into RetryTemplate and passing...
Since I have no `@Configuration` class in my project I tried creating an empty one just with `@EnableRetry` and `@Configuration` but it does not make my method use `@Retryable` so...
Hello, If you use more than exceptions to catch it by divided recover methods , you should change the method. Because, i have debugged the code, the "recover" method's cause...
Spring retry XML equivalent to @EnableRetry
In my RetryListener Implementation I would like to be able to know if the failed retry is the very last one / final one. I thought that would be possible...
It would be great if Spring Retry could support [`Retry-After` HTTP header](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Retry-After). Currently, this is not possible because one gets this header (and its value) from the response itself. In...
### Description As already reported [here](https://github.com/spring-projects/spring-retry/issues/40), I was too a bit surprised to discover that `throwLastExceptionOnExhausted` has no effect on stateless retries. I'm not sure I fully understand the logic...
How about adding an implementation of Sleeper, based on ScheduledExecutorService that one could use if ThreadWaitSleeper is blocking too many threads?