Package akka.stream.scaladsl
Class UnzipWith3<In,A1,A2,A3>
- java.lang.Object
-
- akka.stream.stage.GraphStageWithMaterializedValue<S,NotUsed>
-
- akka.stream.stage.GraphStage<FanOutShape3<In,A1,A2,A3>>
-
- akka.stream.scaladsl.UnzipWith3<In,A1,A2,A3>
-
- All Implemented Interfaces:
Graph<FanOutShape3<In,A1,A2,A3>,NotUsed>
public class UnzipWith3<In,A1,A2,A3> extends GraphStage<FanOutShape3<In,A1,A2,A3>>
`UnzipWith` specialized for 3 outputs
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface akka.stream.Graph
Graph.GraphMapMatVal<S extends Shape,M>
-
-
Constructor Summary
Constructors Constructor Description UnzipWith3(scala.Function1<In,scala.Tuple3<A1,A2,A3>> unzipper)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GraphStageLogic
createLogic(Attributes inheritedAttributes)
Inlet<In>
in()
Attributes
initialAttributes()
Outlet<A1>
out0()
Outlet<A2>
out1()
Outlet<A3>
out2()
FanOutShape3<In,A1,A2,A3>
shape()
The shape of a graph is all that is externally visible: its inlets and outlets.java.lang.String
toString()
scala.Function1<In,scala.Tuple3<A1,A2,A3>>
unzipper()
-
Methods inherited from class akka.stream.stage.GraphStage
createLogicAndMaterializedValue
-
Methods inherited from class akka.stream.stage.GraphStageWithMaterializedValue
withAttributes
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface akka.stream.Graph
addAttributes, async, async, async, getAttributes, named
-
-
-
-
Method Detail
-
createLogic
public GraphStageLogic createLogic(Attributes inheritedAttributes)
- Specified by:
createLogic
in classGraphStage<FanOutShape3<In,A1,A2,A3>>
-
initialAttributes
public Attributes initialAttributes()
- Overrides:
initialAttributes
in classGraphStageWithMaterializedValue<FanOutShape3<In,A1,A2,A3>,NotUsed>
-
shape
public FanOutShape3<In,A1,A2,A3> shape()
Description copied from interface:Graph
The shape of a graph is all that is externally visible: its inlets and outlets.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-