-
Notifications
You must be signed in to change notification settings - Fork 275
New issue
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
Is there a way to do this on something that is not a callable? #72
Comments
You could at least use |
but that would still execute everything on a separate thread right? I mean each and every method which need this retry mechanism? Because all of them have to run in the same thread. |
No. Using a |
@JensRantil was right. @mayooran99 you may find the default block strategy is |
If I've read the original issue description correctly, I believe this issue can be closed as a "non-issue". |
I have this requirement where I have around 4 methods all of which need to retry of certain exception. But since the execution sequence of these methods is specified, they cannot be retried on separate callables. Is there a solution for this problem through this library? That is retry methods and not callables.
The text was updated successfully, but these errors were encountered: