We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, you can do:
RetryStrategy .exponentialBackoff(Duration.ofSeconds(1), Duration.ofSeconds(5), 2.0) .maxAttempts(10) .onError { info, throwable -> println("somethign") } .execute(..)
But it would be nice to do something on "completion with failure", for example, to avoid avoid try/catch around the retry strategy. E.g.
RetryStrategy .exponentialBackoff(Duration.ofSeconds(1), Duration.ofSeconds(5), 2.0) .maxAttempts(10) .onError { info, throwable -> println("somethign") } .execute(..) .mapError(throwable -> // return a new throwable )
and/or:
RetryStrategy .exponentialBackoff(Duration.ofSeconds(1), Duration.ofSeconds(5), 2.0) .maxAttempts(10) .onError { info, throwable -> println("somethign") } .execute(..) .onCompletedWithError(throwable -> ) // Maybe add "onCompletedSuccessfully" or replace with common "onCompleted" method?
RetryStrategy .exponentialBackoff(Duration.ofSeconds(1), Duration.ofSeconds(5), 2.0) .maxAttempts(10) .onError { info, throwable -> println("somethign") } .execute(..) .returnIfCompletedWithError(throwable -> "something else" ) // Move back to happy track (Better name needed)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, you can do:
But it would be nice to do something on "completion with failure", for example, to avoid avoid try/catch around the retry strategy. E.g.
and/or:
and/or:
The text was updated successfully, but these errors were encountered: