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
-
-
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 voidonPush()Called when the input port has a new element available.voidonUpstreamFinish()Called when the input port is finished.java.lang.StringtoString()-
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:InHandlerCalled when the input port has a new element available. The actual element can be retrieved via the {@link GraphStageLogic.grab()} method.
-
onUpstreamFinish
public void onUpstreamFinish()
Description copied from interface:InHandlerCalled when the input port is finished. After this callback no other callbacks will be called for this port.- Specified by:
onUpstreamFinishin interfaceInHandler
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-