| SourceOperationsZipWithT1, 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.129 (1.2.3.129)
Syntax public static Source<T3, TMat> ZipWith<T1, T2, T3, TMat>(
this Source<T1, TMat> flow,
IGraph<SourceShape<T2>, TMat> other,
Func<T1, T2, T3> combine
)
[<ExtensionAttribute>]
static member ZipWith :
flow : Source<'T1, 'TMat> *
other : IGraph<SourceShape<'T2>, 'TMat> *
combine : Func<'T1, 'T2, 'T3> -> Source<'T3, 'TMat>
Parameters
- flow
- Type: Akka.Streams.DslSourceT1, TMat
TBD - other
- Type: Akka.StreamsIGraphSourceShapeT2, TMat
TBD - combine
- Type: SystemFuncT1, T2, T3
TBD
Type Parameters
- T1
- TBD
- T2
- TBD
- T3
- TBD
- TMat
- TBD
Return Value
Type:
SourceT3,
TMatTBD
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
SourceT1,
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