Package akka.stream
Class BidiShape$
- java.lang.Object
-
- akka.stream.BidiShape$
-
- All Implemented Interfaces:
java.io.Serializable
public class BidiShape$ extends java.lang.Object implements java.io.Serializable
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static BidiShape$
MODULE$
Static reference to the singleton instance of this Scala object.
-
Constructor Summary
Constructors Constructor Description BidiShape$()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <In1,Out1,In2,Out2>
BidiShape<In1,Out1,In2,Out2>apply(Inlet<In1> in1, Outlet<Out1> out1, Inlet<In2> in2, Outlet<Out2> out2)
<I1,O1,I2,O2>
BidiShape<I1,O1,I2,O2>fromFlows(FlowShape<I1,O1> top, FlowShape<I2,O2> bottom)
<In1,Out1,In2,Out2>
BidiShape<In1,Out1,In2,Out2>of(Inlet<In1> in1, Outlet<Out1> out1, Inlet<In2> in2, Outlet<Out2> out2)
Java API<In1,Out1,In2,Out2>
scala.Option<scala.Tuple4<Inlet<In1>,Outlet<Out1>,Inlet<In2>,Outlet<Out2>>>unapply(BidiShape<In1,Out1,In2,Out2> x$0)
-
-
-
Field Detail
-
MODULE$
public static final BidiShape$ MODULE$
Static reference to the singleton instance of this Scala object.
-
-
Method Detail
-
fromFlows
public <I1,O1,I2,O2> BidiShape<I1,O1,I2,O2> fromFlows(FlowShape<I1,O1> top, FlowShape<I2,O2> bottom)
-
of
public <In1,Out1,In2,Out2> BidiShape<In1,Out1,In2,Out2> of(Inlet<In1> in1, Outlet<Out1> out1, Inlet<In2> in2, Outlet<Out2> out2)
Java API
-
apply
public <In1,Out1,In2,Out2> BidiShape<In1,Out1,In2,Out2> apply(Inlet<In1> in1, Outlet<Out1> out1, Inlet<In2> in2, Outlet<Out2> out2)
-
-