Skip to content

Latest commit

 

History

History
22 lines (21 loc) · 1.68 KB

Readme.md

File metadata and controls

22 lines (21 loc) · 1.68 KB

Java support License Maven Central GitHub release GitHub Stars GitHub Forks GitHub issues GitHub Contributors GitHub repo size

How to use

RetryTemplate retryTemplate = RetryTemplate.builder()
        .maxAttempts(6)
        .exponentialBackoff(1000, 2, 10000)
        .retryOn(IllegalArgumentException.class)
        .build();
retryTemplate.execute(callback);

You are welcome to enjoy it