Package akka.stream
Class FanOutShape2<I,O0,O1>
- java.lang.Object
-
- akka.stream.Shape
-
- akka.stream.FanOutShape<I>
-
- akka.stream.FanOutShape2<I,O0,O1>
-
public class FanOutShape2<I,O0,O1> extends FanOutShape<I>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class akka.stream.FanOutShape
FanOutShape.Init<I>, FanOutShape.Name<I>, FanOutShape.Name$, FanOutShape.Ports<I>, FanOutShape.Ports$
-
-
Constructor Summary
Constructors Constructor Description FanOutShape2(FanOutShape.Init<I> _init)
FanOutShape2(Inlet<I> in, Outlet<O0> out0, Outlet<O1> out1)
FanOutShape2(java.lang.String name)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected FanOutShape<I>
construct(FanOutShape.Init<I> init)
FanOutShape2<I,O0,O1>
deepCopy()
Create a copy of this Shape object, returning the same type as the original; this constraint can unfortunately not be expressed in the type system.Outlet<O0>
out0()
Outlet<O1>
out1()
-
Methods inherited from class akka.stream.FanOutShape
in, inlets, newOutlet, outlets
-
Methods inherited from class akka.stream.Shape
getInlets, getOutlets, hasOnePort, hasSamePortsAndShapeAs, hasSamePortsAs, requireSamePortsAndShapeAs, requireSamePortsAs
-
-
-
-
Method Detail
-
construct
protected FanOutShape<I> construct(FanOutShape.Init<I> init)
- Specified by:
construct
in classFanOutShape<I>
-
deepCopy
public FanOutShape2<I,O0,O1> deepCopy()
Description copied from class:Shape
Create a copy of this Shape object, returning the same type as the original; this constraint can unfortunately not be expressed in the type system.- Overrides:
deepCopy
in classFanOutShape<I>
-
-