-
Notifications
You must be signed in to change notification settings - Fork 29
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
Relationship to CompositeFuture? #1
Comments
So far there is no plan to integrate this project into Vert.x core, it can be used without any modification as a companion library. I started this project as a POC. It won't replace You can create a VertxCompletableFuture from a Vert.x future, including CompositeFuture as they are Vert.x Future. I was thinking add a About |
Thanks for your explanation. Regarding |
It would be great to have this package as part of the official Vert.x packages. |
Integrating with Vert.x will allows us to use https://github.com/electronicarts/ea-async ea-async needs the methods to return variant of CompletableFuture: vert-x3/vertx-sync#10 |
Hi @cescoffier
Nice project! I'll intend to try it out. Since you were also test-driving your microservices projects here, are you intending this to become a standard part of the Vert.x toolkit? If yes, what is the relationship to
CompositeFuture
? Is this intended to replace that?On the
any
andall
feature I recently had a discussion with @vietj with additional overloads that wait till all results are in. This same discussion can be applied toCompletableFuture
I suppose.I submitted an initial PR but ultimately we decided on a
join
method and predicate functions to model the behavior, which @vietj created.See original issue: eclipse-vertx/vert.x#1430
And PR resulting from it: eclipse-vertx/vert.x#1567
The text was updated successfully, but these errors were encountered: