Tim Peierls

Results 42 comments of Tim Peierls

😂 and it's still not right! On Sat, Sep 17, 2022, 6:18 PM Jonathan Halterman ***@***.***> wrote: > For some reason my fingers always struggle with that one :) >...

Here's another example of how the requested support would be useful. `jackson-datatye-guava` does not currently support `RangeMap` ser/deser. It's not hard to write converters between `RangeMap` and `List`, where `RangeMapEntry`...

Doesn't `FailsafeExecutor::run(ContextualRunnable)` give you that already? ```java Failsafe.with(...) .run(ctx -> { int count = ctx.getExecutionCount(); ... do stuff with count, maybe throw checked exception ... }); ``` As far as...

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...

No response to this, which is fair, since it doesn't really ask any questions or propose any action, other than better documentation. But there's a way to make things a...

I think it's going to be hard to define semantics for this that won't surprise people. What would happen in these cases? ``` java @Before public void setup(@All Foo foo)...

Can you make a more specific proposal here? It's not enough to say "use @Before with bindMany" -- you need to flesh out the semantics in detail.

Those sentences (I didn't write them, I quoted them): > But you can add the same parameter (without `@All`) to the `@Before` method. > This way the same instance is...

Thanks for starting to spec this out. My feeling is still that the definitional complexity outweighs the marginal benefit, but if someone is willing to complete the spec and implement...

No, I did understand what you wrote. I'm not saying it's impossible to grok. I'm saying that someone coming to this fresh might be excused for being unsure of whether...