Benjamin Tanguay
Benjamin Tanguay
Note that the suggestion is in certain cases a breaking change because even though the AsyncResult provides the `succeeded()` and `failed()` APIs, one could also rely on `.result() == null`...
I'm not sure whether you're talking about a workaround I could use right now to avoid my problem or a potential change to the API. In both cases, I would...
Honestly, I have trouble seeing how your suggestion would translate in code so I cannot add much to the discussion. Basically, as long as the `result()` method is always usable...
It returns a CompositeFuture or a AsyncResult\? Because it if is the second case, what would the result of this: CompositeFuture.join(Future.failedFuture("failed")) .onComplete(result -> { // What is the result of...
Okay. Sorry for being insistent but now I'm fairly certain I understand you correctly. My problem with the solution you propose is that I believe it would cause a big...