Packages

o

akka.stream.stage.GraphStageLogic

TotallyIgnorantInput

object TotallyIgnorantInput extends InHandler

Input handler that does not terminate the operator upon receiving completion nor failure.

Source
GraphStage.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TotallyIgnorantInput
  2. InHandler
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def onPush(): Unit

    Called when the input port has a new element available.

    Called when the input port has a new element available. The actual element can be retrieved via the GraphStageLogic.grab() method.

    Definition Classes
    TotallyIgnorantInputInHandler
  2. def onUpstreamFailure(ex: Throwable): Unit

    Called when the input port has failed.

    Called when the input port has failed. After this callback no other callbacks will be called for this port.

    Definition Classes
    TotallyIgnorantInputInHandler
  3. def onUpstreamFinish(): Unit

    Called when the input port is finished.

    Called when the input port is finished. After this callback no other callbacks will be called for this port.

    Definition Classes
    TotallyIgnorantInputInHandler