Package akka.stream.stage
Class GraphStageLogic.IgnoreTerminateInput$
- java.lang.Object
-
- akka.stream.stage.GraphStageLogic.IgnoreTerminateInput$
-
- All Implemented Interfaces:
InHandler
- Enclosing class:
- GraphStageLogic
public static class GraphStageLogic.IgnoreTerminateInput$ extends java.lang.Object implements InHandler
Input handler that does not terminate the operator upon receiving completion. The operator fails upon receiving a failure.
-
-
Field Summary
Fields Modifier and Type Field Description static GraphStageLogic.IgnoreTerminateInput$
MODULE$
Static reference to the singleton instance of this Scala object.
-
Constructor Summary
Constructors Constructor Description IgnoreTerminateInput$()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
onPush()
Called when the input port has a new element available.void
onUpstreamFinish()
Called when the input port is finished.java.lang.String
toString()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface akka.stream.stage.InHandler
onUpstreamFailure
-
-
-
-
Field Detail
-
MODULE$
public static final GraphStageLogic.IgnoreTerminateInput$ MODULE$
Static reference to the singleton instance of this Scala object.
-
-
Method Detail
-
onPush
public void onPush()
Description copied from interface:InHandler
Called when the input port has a new element available. The actual element can be retrieved via theGraphStageLogic.grab
method.
-
onUpstreamFinish
public void onUpstreamFinish()
Description copied from interface:InHandler
Called when the input port is finished. After this callback no other callbacks will be called for this port.- Specified by:
onUpstreamFinish
in interfaceInHandler
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-