| Package | Description |
|---|---|
| io.smallrye.mutiny.groups |
| Modifier and Type | Method and Description |
|---|---|
MultiFlatten<I,O> |
MultiFlatten.collectFailures()
Instructs the flatMap operation to consume all the streams returned by the mapper before
propagating a failure if any of the stream has produced a failure.
|
<O> MultiFlatten<T,O> |
MultiOnItem.produceCompletionStage(Function<? super T,? extends CompletionStage<? extends O>> mapper)
Deprecated.
Use
MultiOnItem.transformToUni(Function) and creates a new Uni from the CompletionStage |
<O> MultiFlatten<T,O> |
MultiOnItem.produceIterable(Function<? super T,? extends Iterable<? extends O>> mapper)
Deprecated.
Use
MultiOnItem.transformToIterable(Function) instead |
<O> MultiFlatten<T,O> |
MultiOnItem.produceMulti(Function<? super T,? extends org.reactivestreams.Publisher<? extends O>> mapper)
Deprecated.
Use
MultiOnItem.transformToMulti(Function) instead |
<O> MultiFlatten<T,O> |
MultiOnItem.producePublisher(Function<? super T,? extends org.reactivestreams.Publisher<? extends O>> mapper)
Deprecated.
Use
MultiOnItem.transformToMulti(Function) instead. |
<O> MultiFlatten<T,O> |
MultiOnItem.produceUni(Function<? super T,? extends Uni<? extends O>> mapper)
Deprecated.
Use
MultiOnItem.transformToUni(Function) instead |
<O> MultiFlatten<T,O> |
MultiOnItem.transformToMulti(Function<? super T,? extends org.reactivestreams.Publisher<? extends O>> mapper)
On each item received from upstream, invoke the given mapper.
|
<O> MultiFlatten<T,O> |
MultiOnItem.transformToUni(Function<? super T,? extends Uni<? extends O>> mapper)
On each item received from upstream, invoke the given mapper.
|
MultiFlatten<I,O> |
MultiFlatten.withRequests(int req)
Configures the number the items requested to the streams produced by the mapper.
|
Copyright © 2019–2020 SmallRye. All rights reserved.