java.lang.Object
io.smallrye.mutiny.groups.MultiGroup<T>
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription<K> Multi<GroupedMulti<K, T>> <K> Multi<GroupedMulti<K, T>> <K,V> Multi <GroupedMulti<K, V>> <K,V> Multi <GroupedMulti<K, V>> by(Function<? super T, ? extends K> keyMapper, Function<? super T, ? extends V> valueMapper, long prefetch) Splits the upstreamMultiintoListof items and emits these lists.
-
Constructor Details
-
MultiGroup
-
-
Method Details
-
intoLists
Splits the upstreamMultiintoListof items and emits these lists. The returned object configures how the split is made.- Returns:
- the split configuration
-
intoMultis
Splits the upstreamMultiintoMultiof items and emits theseMulti. It transforms the upstreamMultiinto aMulti<Multi<T>>, where each emitted multi contains items from the upstream.The returned object configures how the split is made.
- Returns:
- the split configuration
-
by
-
by
-
by
@CheckReturnValue public <K> Multi<GroupedMulti<K,T>> by(Function<? super T, ? extends K> keyMapper, long prefetch) -
by
-