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
This code will never complete.
Uni.combine().all().unis(List.of()).subscribe(x -> System.out.println("yay"));
The unis method should have a guard to fire an event when the list of inputs is empty. Otherwise one always needs to guard the code beforehand like.
unis
var combined = unis.isEmpty() ? Uni.createFrom().voidItem() : Uni.combine().all().unis(unis);
The text was updated successfully, but these errors were encountered:
We should perhaps enforce the contract specified in the Javadoc:
@param unis the list of unis, must not be {@code null}, must not contain {@code null}, must not be empty
This is not enforced and should be.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
This code will never complete.
The
unis
method should have a guard to fire an event when the list of inputs is empty. Otherwise one always needs to guard the code beforehand like.The text was updated successfully, but these errors were encountered: