Closed jakzal closed 3 years ago
I think this has proved we should discourage (or make it impossible) for end users to use completesEventually() with completes() directly:
completesEventually()
completes()
CompletesEventually completes = completesEventually(); eventualOutcome.andFinallyConsume((R value) -> completes.with(value)); return completes();
and suggest using answerFrom() instead:
answerFrom()
return answerFrom(eventualOutcome);
Related PRs:
I think this has proved we should discourage (or make it impossible) for end users to use
completesEventually()
withcompletes()
directly:and suggest using
answerFrom()
instead:Related PRs: