We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Right now:
Uni.combine().all/any Multi.createBy().combining/merging/concatenating
Also, when dealing with dynamic lists, the API requires to use a collection and then invoke. A builder approach would be better:
UniAllBuilder builder = Uni.combine().all(); builder.add(uni1); builder.add(uni2); Uni<X> uni = builder.combineWith(combinator);
The text was updated successfully, but these errors were encountered:
#604 is a draft for Uni.combine.
Uni.combine
Sorry, something went wrong.
Half of this issue has been addressed in #604
Future works will focus on what can be done on the Multi side.
Multi
I think we've done well on this front during the past releases and the upcoming 1.4.0.
jponge
No branches or pull requests
Right now:
Also, when dealing with dynamic lists, the API requires to use a collection and then invoke. A builder approach would be better:
The text was updated successfully, but these errors were encountered: