| FlowOperationsZipTIn, T1, T2, TMat Method |
Combine the elements of current flow and the given
SourceTOut, TMat into a stream of tuples.
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.129 (1.2.3.129)
Syntax public static Flow<TIn, Tuple<T1, T2>, TMat> Zip<TIn, T1, T2, TMat>(
this Flow<TIn, T1, TMat> flow,
IGraph<SourceShape<T2>, TMat> other
)
[<ExtensionAttribute>]
static member Zip :
flow : Flow<'TIn, 'T1, 'TMat> *
other : IGraph<SourceShape<'T2>, 'TMat> -> Flow<'TIn, Tuple<'T1, 'T2>, 'TMat>
Parameters
- flow
- Type: Akka.Streams.DslFlowTIn, T1, TMat
TBD - other
- Type: Akka.StreamsIGraphSourceShapeT2, TMat
TBD
Type Parameters
- TIn
- TBD
- T1
- TBD
- T2
- TBD
- TMat
- TBD
Return Value
Type:
FlowTIn,
TupleT1,
T2,
TMatTBD
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