Package akka.stream
Class Outlet$
- java.lang.Object
-
- akka.stream.Outlet$
-
public class Outlet$ extends java.lang.Object
An Outlet is a typed output to a Shape. Its partner in the Module view is the OutPort (which does not bear an element type because Modules only express the internal structural hierarchy of stream topologies).
-
-
Constructor Summary
Constructors Constructor Description Outlet$()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> Outlet<T>
apply(java.lang.String name)
Scala API<T> Outlet<T>
create(java.lang.String name)
JAVA API
-
-
-
Field Detail
-
MODULE$
public static final Outlet$ MODULE$
Static reference to the singleton instance of this Scala object.
-
-
Method Detail
-
apply
public <T> Outlet<T> apply(java.lang.String name)
Scala APICreates a new Outlet with the given name. The name will be used when displaying debug information or error messages involving the port.
-
create
public <T> Outlet<T> create(java.lang.String name)
JAVA APICreates a new Outlet with the given name. The name will be used when displaying debug information or error messages involving the port.
-
-