Click or drag to resize
Akka.NETSource<TOut, TMat>.ZipWithN<T, TOut2> Method
Combine the elements of multiple streams into a stream of sequences using a combiner function.

Namespace:  Akka.Streams.Dsl
Assembly:  Akka.Streams (in Akka.Streams.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public Source<TOut2, NotUsed> ZipWithN<T, TOut2>(
	Func<IImmutableList<T>, TOut2> zipper,
	IEnumerable<Source<T, NotUsed>> sources
)

Parameters

zipper
Type: System.Func<IImmutableList<T>, TOut2>
TBD
sources
Type: System.Collections.Generic.IEnumerable<Source<T, NotUsed>>
TBD

Type Parameters

T
TBD
TOut2
TBD

Return Value

Type: Source<TOut2, NotUsed>
TBD
See Also