Package akka.stream
Class AbstractShape
- java.lang.Object
-
- akka.stream.Shape
-
- akka.stream.AbstractShape
-
-
Constructor Summary
Constructors Constructor Description AbstractShape()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract java.util.List<Inlet<?>>
allInlets()
Provide the list of all input ports of this shape.abstract java.util.List<Outlet<?>>
allOutlets()
Provide the list of all output ports of this shape.java.util.List<Inlet<?>>
getInlets()
Java API: get a list of all input portsjava.util.List<Outlet<?>>
getOutlets()
Java API: get a list of all output portsscala.collection.immutable.Seq<Inlet<?>>
inlets()
Scala API: get a list of all input portsscala.collection.immutable.Seq<Outlet<?>>
outlets()
Scala API: get a list of all output ports-
Methods inherited from class akka.stream.Shape
deepCopy, hasOnePort, hasSamePortsAndShapeAs, hasSamePortsAs, requireSamePortsAndShapeAs, requireSamePortsAs
-
-
-
-
Method Detail
-
allInlets
public abstract java.util.List<Inlet<?>> allInlets()
Provide the list of all input ports of this shape.
-
allOutlets
public abstract java.util.List<Outlet<?>> allOutlets()
Provide the list of all output ports of this shape.
-
getInlets
public final java.util.List<Inlet<?>> getInlets()
Description copied from class:Shape
Java API: get a list of all input ports
-
getOutlets
public final java.util.List<Outlet<?>> getOutlets()
Description copied from class:Shape
Java API: get a list of all output ports- Overrides:
getOutlets
in classShape
-
inlets
public final scala.collection.immutable.Seq<Inlet<?>> inlets()
Description copied from class:Shape
Scala API: get a list of all input ports
-
-