Click or drag to resize
Akka.NETBidiShape<TIn1, TOut1, TIn2, TOut2> Constructor (Inlet<TIn1>, Outlet<TOut1>, Inlet<TIn2>, Outlet<TOut2>)
TBD

Namespace:  Akka.Streams
Assembly:  Akka.Streams (in Akka.Streams.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public BidiShape(
	Inlet<TIn1> in1,
	Outlet<TOut1> out1,
	Inlet<TIn2> in2,
	Outlet<TOut2> out2
)

Parameters

in1
Type: Akka.Streams.Inlet<TIn1>
TBD
out1
Type: Akka.Streams.Outlet<TOut1>
TBD
in2
Type: Akka.Streams.Inlet<TIn2>
TBD
out2
Type: Akka.Streams.Outlet<TOut2>
TBD
Exceptions
ExceptionCondition
ArgumentNullException This exception is thrown when either the specified in1, out1, in2, or out2 is undefined.
See Also