Click or drag to resize
Akka.NETFlowOperationsZipWithTIn, T1, T2, T3, TMat Method
Put together the elements of current flow and the given SourceTOut, TMat into a stream of combined elements using a combiner function.

Emits when all of the inputs has an element available

Backpressures when downstream backpressures

Completes when any upstream completes

Cancels when downstream cancels

Namespace:  Akka.Streams.Dsl
Assembly:  Akka.Streams (in Akka.Streams.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public static Flow<TIn, T3, TMat> ZipWith<TIn, T1, T2, T3, TMat>(
	this Flow<TIn, T1, TMat> flow,
	IGraph<SourceShape<T2>, TMat> other,
	Func<T1, T2, T3> combine
)

Parameters

flow
Type: Akka.Streams.DslFlowTIn, T1, TMat
TBD
other
Type: Akka.StreamsIGraphSourceShapeT2, TMat
TBD
combine
Type: SystemFuncT1, T2, T3
TBD

Type Parameters

TIn
TBD
T1
TBD
T2
TBD
T3
TBD
TMat
TBD

Return Value

Type: FlowTIn, T3, TMat
TBD

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type FlowTIn, T1, TMat. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also