Package akka.stream

Class Inlet$


  • public class Inlet$
    extends java.lang.Object
    An Inlet is a typed input to a Shape. Its partner in the Module view is the InPort (which does not bear an element type because Modules only express the internal structural hierarchy of stream topologies).
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static Inlet$ MODULE$
      Static reference to the singleton instance of this Scala object.
    • Constructor Summary

      Constructors 
      Constructor Description
      Inlet$()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      <T> Inlet<T> apply​(java.lang.String name)
      Scala API
      <T> Inlet<T> create​(java.lang.String name)
      JAVA API
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • MODULE$

        public static final Inlet$ MODULE$
        Static reference to the singleton instance of this Scala object.
    • Constructor Detail

      • Inlet$

        public Inlet$()
    • Method Detail

      • apply

        public <T> Inlet<T> apply​(java.lang.String name)
        Scala API

        Creates a new Inlet with the given name. The name will be used when displaying debug information or error messages involving the port.

      • create

        public <T> Inlet<T> create​(java.lang.String name)
        JAVA API

        Creates a new Inlet with the given name. The name will be used when displaying debug information or error messages involving the port.