Skip to content
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

[4.x] 5618 flatMapCompletionStage javadoc fix #5624

Merged
merged 2 commits into from
Dec 7, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -646,8 +646,8 @@ default <U> Multi<U> flatMap(Function<? super T, ? extends Flow.Publisher<? exte

/**
* Transform item with supplied function and flatten resulting {@link java.util.concurrent.CompletionStage} results
* to downstream. As reactive streams forbids null values, CompletionStage result is mapped to
* {@link java.util.Optional}.
* to downstream. As reactive streams forbids null values, error signal with {@link java.lang.NullPointerException }
* is sent to downstream when CompletionStage result is null.
*
* @param mapper {@link Function} receiving item as parameter and returning {@link java.util.concurrent.CompletionStage}
* @param <U> output item type
Expand Down