Robert Huffman

Results 5 comments of Robert Huffman

I think the closest option is [this method in WaitStrategies](https://github.com/rholder/guava-retrying/blob/master/src/main/java/com/github/rholder/retry/WaitStrategies.java#L153): ```java public static WaitStrategy exponentialWait(long multiplier, long maximumTime, @Nonnull TimeUnit maximumTimeUnit) ``` The exponential wait is normally in milliseconds. If...

I have forked this project because this has been a long-standing issue. You can check out the fork at [rhuffman/re-retrying](https://github.com/rhuffman/re-retrying), and currently I have released version 3.0.0-rc.1 on the Central...

I tried for a few weeks to get in touch with rholder but was unsuccessful. Therefore, I have forked the project to [rhuffman/re-retrying](https://github.com/rhuffman/re-retrying). The fork has been targeted at Java...

I have forked this project because this has been a long-standing issue. You can check out the fork at [rhuffman/re-retrying](https://github.com/rhuffman/re-retrying), and currently I have released version 3.0.0-rc.1 on the Central...

Just ran into this issue: we are about to release our product that uses Guava 20. Because of the dynamic dependency used by guava-retrying, the dependency of our entire project...