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:ShapeJava API: get a list of all input ports 
- 
getOutlets
public final java.util.List<Outlet<?>> getOutlets()
Description copied from class:ShapeJava API: get a list of all output ports- Overrides:
 getOutletsin classShape
 
- 
inlets
public final scala.collection.immutable.Seq<Inlet<?>> inlets()
Description copied from class:ShapeScala API: get a list of all input ports 
 - 
 
 -