Package akka.stream.stage
Class GraphStageLogic.EagerTerminateInput$
- java.lang.Object
-
- akka.stream.stage.GraphStageLogic.EagerTerminateInput$
-
- All Implemented Interfaces:
InHandler
- Enclosing class:
- GraphStageLogic
public static class GraphStageLogic.EagerTerminateInput$ extends java.lang.Object implements InHandler
Input handler that terminates the operator upon receiving completion. The operator fails upon receiving a failure.
-
-
Field Summary
Fields Modifier and Type Field Description static GraphStageLogic.EagerTerminateInput$
MODULE$
Static reference to the singleton instance of this Scala object.
-
Constructor Summary
Constructors Constructor Description EagerTerminateInput$()
-
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.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, onUpstreamFinish
-
-
-
-
Field Detail
-
MODULE$
public static final GraphStageLogic.EagerTerminateInput$ 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.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-