Package akka.stream.javadsl
Class ZipWithN
- java.lang.Object
-
- akka.stream.javadsl.ZipWithN
-
public class ZipWithN extends java.lang.Object
Combine the elements of multiple streams into a stream of lists using a combiner function.A
ZipWithN
has an
input ports and oneout
port'''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 Static Methods Concrete Methods Modifier and Type Method Description static <A,O>
Graph<UniformFanInShape<A,O>,NotUsed>create(Function<java.util.List<A>,O> zipper, int n)
-
-
-
Method Detail
-
create
public static <A,O> Graph<UniformFanInShape<A,O>,NotUsed> create(Function<java.util.List<A>,O> zipper, int n)
-
-