| SubFlowOperationsZipT1, T2, TMat, TClosed 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 SubFlow<Tuple<T1, T2>, TMat, TClosed> Zip<T1, T2, TMat, TClosed>(
this SubFlow<T1, TMat, TClosed> flow,
IGraph<SourceShape<T2>, TMat> other
)
[<ExtensionAttribute>]
static member Zip :
flow : SubFlow<'T1, 'TMat, 'TClosed> *
other : IGraph<SourceShape<'T2>, 'TMat> -> SubFlow<Tuple<'T1, 'T2>, 'TMat, 'TClosed>
Parameters
- flow
- Type: Akka.Streams.DslSubFlowT1, TMat, TClosed
TBD - other
- Type: Akka.StreamsIGraphSourceShapeT2, TMat
TBD
Type Parameters
- T1
- TBD
- T2
- TBD
- TMat
- TBD
- TClosed
- TBD
Return Value
Type:
SubFlowTupleT1,
T2,
TMat,
TClosedTBD
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
SubFlowT1,
TMat,
TClosed. 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