Code Monkey home page Code Monkey logo

Comments (7)

Tembrel avatar Tembrel commented on June 12, 2024

Doesn't FailsafeExecutor::run(ContextualRunnable<Void>) give you that already?

Failsafe.with(...)
    .run(ctx -> {
        int count = ctx.getExecutionCount();
        ... do stuff with count, maybe throw checked exception ...
    });

As far as I know, the ExecutionEvent types just offer subsets of ExecutionContext information.

from failsafe.

pandoras-toolbox avatar pandoras-toolbox commented on June 12, 2024

Oh, yes, you are right, I overlooked that method. Thank you!

from failsafe.

pandoras-toolbox avatar pandoras-toolbox commented on June 12, 2024

But one question, I cannot obtain the duration for the next attempt? I wanted to log that it will wait now for that duration until retrying again.

from failsafe.

jhalterman avatar jhalterman commented on June 12, 2024

You can configure an OnRetryScheduled event listener on the retry policy, and use event.getDelay(). See:

https://failsafe.dev/retry/#event-listeners
https://failsafe.dev/javadoc/core/dev/failsafe/RetryPolicyBuilder.html#onRetryScheduled-dev.failsafe.event.EventListener-

from failsafe.

pandoras-toolbox avatar pandoras-toolbox commented on June 12, 2024

Thank you. I cannot do exactly what I wanted in an elegant way because the information is not available in the run(...) block, but nevermind.

from failsafe.

Tembrel avatar Tembrel commented on June 12, 2024

There's no way, elegant or otherwise, to supply the delay before the next execution attempt within the current attempt, because you don't in general know whether the current attempt will be seen as a failure or, if a delay function is used, what delay will be computed. (The delay function can use the result of the failed attempt to determine the delay.)

from failsafe.

pandoras-toolbox avatar pandoras-toolbox commented on June 12, 2024

Okay, I see.

from failsafe.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.