Package akka.stream.stage
Class GraphStageLogic.TotallyIgnorantInput$
- java.lang.Object
-
- akka.stream.stage.GraphStageLogic.TotallyIgnorantInput$
-
- All Implemented Interfaces:
InHandler
- Enclosing class:
- GraphStageLogic
public static class GraphStageLogic.TotallyIgnorantInput$ extends java.lang.Object implements InHandler
Input handler that does not terminate the operator upon receiving completion nor failure.
-
-
Field Summary
Fields Modifier and Type Field Description static GraphStageLogic.TotallyIgnorantInput$
MODULE$
Static reference to the singleton instance of this Scala object.
-
Constructor Summary
Constructors Constructor Description TotallyIgnorantInput$()
-
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
onUpstreamFailure(java.lang.Throwable ex)
Called when the input port has failed.void
onUpstreamFinish()
Called when the input port is finished.
-
-
-
Field Detail
-
MODULE$
public static final GraphStageLogic.TotallyIgnorantInput$ 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
-
onUpstreamFailure
public void onUpstreamFailure(java.lang.Throwable ex)
Description copied from interface:InHandler
Called when the input port has failed. After this callback no other callbacks will be called for this port.- Specified by:
onUpstreamFailure
in interfaceInHandler
-
-