| BidiFlowFromFunctionTIn1, TOut1, TIn2, TOut2 Method |
Namespace:
Akka.Streams.Dsl
Assembly:
Akka.Streams (in Akka.Streams.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax public static BidiFlow<TIn1, TOut1, TIn2, TOut2, NotUsed> FromFunction<TIn1, TOut1, TIn2, TOut2>(
Func<TIn1, TOut1> outbound,
Func<TIn2, TOut2> inbound
)
static member FromFunction :
outbound : Func<'TIn1, 'TOut1> *
inbound : Func<'TIn2, 'TOut2> -> BidiFlow<'TIn1, 'TOut1, 'TIn2, 'TOut2, NotUsed>
Parameters
- outbound
- Type: SystemFuncTIn1, TOut1
TBD - inbound
- Type: SystemFuncTIn2, TOut2
TBD
Type Parameters
- TIn1
- TBD
- TOut1
- TBD
- TIn2
- TBD
- TOut2
- TBD
Return Value
Type:
BidiFlowTIn1,
TOut1,
TIn2,
TOut2,
NotUsedTBD
See Also