Package akka.stream.javadsl
Class ZipWithN$
- java.lang.Object
-
- akka.stream.javadsl.ZipWithN$
-
public class ZipWithN$ extends java.lang.ObjectCombine the elements of multiple streams into a stream of lists using a combiner function.A
ZipWithNhas aninput ports and oneoutport'''Emits when''' all of the inputs has an element available
'''Backpressures when''' downstream backpressures
'''Completes when''' any upstream completes
'''Cancels when''' downstream cancels
-
-
Constructor Summary
Constructors Constructor Description ZipWithN$()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <A,O>
Graph<UniformFanInShape<A,O>,NotUsed>create(Function<java.util.List<A>,O> zipper, int n)
-
-
-
Field Detail
-
MODULE$
public static final ZipWithN$ MODULE$
Static reference to the singleton instance of this Scala object.
-
-
Method Detail
-
create
public <A,O> Graph<UniformFanInShape<A,O>,NotUsed> create(Function<java.util.List<A>,O> zipper, int n)
-
-