Skip to content

Commit

Permalink
Merge branch 'master' of github.com:smallrye/smallrye-mutiny
Browse files Browse the repository at this point in the history
  • Loading branch information
cescoffier committed Dec 23, 2020
2 parents c479a92 + c7ab108 commit 044957b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions implementation/src/main/java/io/smallrye/mutiny/Uni.java
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ static UniCreate createFrom() {
* <p>
* With `then` you can structure and chain groups of processing.
*
* @param stage the function receiving the this {@link Uni} as parameter and producing the outcome (can be a
* @param stage the function receiving this {@link Uni} as parameter and producing the outcome (can be a
* {@link Uni} or something else), must not be {@code null}.
* @param <O> the outcome type
* @return the outcome of the function.
Expand All @@ -106,7 +106,7 @@ default <O> O then(Function<Uni<T>, O> stage) {
* <p>
* With `stage` you can structure and chain groups of processing.
*
* @param stage the function receiving the this {@link Uni} as parameter and producing the outcome (can be a
* @param stage the function receiving this {@link Uni} as parameter and producing the outcome (can be a
* {@link Uni} or something else), must not be {@code null}.
* @param <O> the outcome type
* @return the outcome of the function.
Expand Down Expand Up @@ -517,7 +517,7 @@ default Uni<T> invokeUni(Function<? super T, Uni<?>> action) {
* This operation is generally named {@code flatMap}.
* This method is a shortcut on {@link UniOnItem#transformToUni(Function)} onItem().transformToUni(mapper)}.
*
* @param mapper the function called with the item of the this {@link Uni} and producing the {@link Uni},
* @param mapper the function called with the item of this {@link Uni} and producing the {@link Uni},
* must not be {@code null}, must not return {@code null}.
* @param <O> the type of item
* @return a new {@link Uni} that would fire events from the uni produced by the mapper function, possibly
Expand Down Expand Up @@ -548,7 +548,7 @@ default <O> Uni<O> flatMap(Function<? super T, Uni<? extends O>> mapper) {
* This operation is generally named {@code flatMap}.
* This method is a shortcut for {@link UniOnItem#transformToUni(Function) onItem().transformToUni(mapper)}.
*
* @param mapper the function called with the item of the this {@link Uni} and producing the {@link Uni},
* @param mapper the function called with the item of this {@link Uni} and producing the {@link Uni},
* must not be {@code null}, must not return {@code null}.
* @param <O> the type of item
* @return a new {@link Uni} that would fire events from the uni produced by the mapper function, possibly
Expand Down Expand Up @@ -614,7 +614,7 @@ default <O> Uni<O> chain(Supplier<Uni<? extends O>> supplier) {
* This method is a shortcut for {@link UniOnItem#transformToUni(Function)
* onItem().transformToUni(ignored -> supplier.get())}.
*
* @param supplier the function called when the item of the this {@link Uni} is emitted and producing the {@link Uni},
* @param supplier the function called when the item of this {@link Uni} is emitted and producing the {@link Uni},
* must not be {@code null}, must not return {@code null}.
* @param <O> the type of item
* @return a new {@link Uni} that would fire events from the uni produced by the mapper function, possibly
Expand Down

0 comments on commit 044957b

Please sign in to comment.