Releases: elennick/retry4j
retry4j-0.15.0
retry4j-0.14.0
Issue #68 (bug) - Fixed issue where retryOnAnyExceptionExcluding
config option did not actually work if you specified more than one exception.
Issue #69 (bug) - Made it so withDelayBetweenTries
config option will default to 0 if it is not specified rather than causing a NullPointerException
.
Issue #70 (enhancement) - Added a feature where custom retry-on-exception behavior can be defined (see documentation here: https://github.com/elennick/retry4j#exception-handling-config)
Issue #71 (bug) - Fixed an issue where it was possible to specify a config value for withMaxNumberOfTries
that was less than 1.
retry4j-0.13.0
Issue #67 (enhancement) - Updated AsyncCallExecutor
to not utilize a thread pool unless one is set.
retry4j-0.12.1
Issue #65 (bug) - Fixed an issue where beforeNextTry
listener would be called even when another try was not going to be executed.
retry4j-0.12.0
Issue #50 (enhancement) - BackoffStrategy
's can now specify validation logic. All default BackoffStrategy
's now have logic that requires a time-between-retries be specified EXCEPT for the No Wait backoff strategy.
Issue #24 (enhancement) - It is now possible to add an optional Call Name when executing a call. This allows the ability to attach a human-friendly name/description to the call status if desired.
retry4j-0.11.0
Issue #46 (enhancement) - Refactored the listener interface to be cleaner. See documentation for specific details.
Issue #33 (enhancement) - Added documentation about SLF4J usage.
Issue #13 (enhancement) - Added a new retry4j-examples repo and added it to the README. Has some initial examples of the library being used but it will be fleshed out further going forward.
retry4j-0.10.0
retry4j-0.9.0
retry4j-0.8.0
Added a new feature:
Issue #43 (enhancement) - Can now retry not only on exceptions but also on returned values. New functionality is detailed in the project README.