Package org.apache.pekko.stream.stage
Class GraphStageLogic.TotallyIgnorantInput$
java.lang.Object
org.apache.pekko.stream.stage.GraphStageLogic.TotallyIgnorantInput$
- All Implemented Interfaces:
InHandler
- Enclosing class:
- GraphStageLogic
Input handler that does not terminate the operator upon receiving completion
nor failure.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final GraphStageLogic.TotallyIgnorantInput$Static reference to the singleton instance of this Scala object. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidonPush()Called when the input port has a new element available.voidCalled when the input port has failed.voidCalled when the input port is finished.
-
Field Details
-
MODULE$
Static reference to the singleton instance of this Scala object.
-
-
Constructor Details
-
TotallyIgnorantInput$
public TotallyIgnorantInput$()
-
-
Method Details
-
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 theGraphStageLogic.grabmethod. -
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
-
onUpstreamFailure
Description copied from interface:InHandlerCalled when the input port has failed. After this callback no other callbacks will be called for this port.- Specified by:
onUpstreamFailurein interfaceInHandler
-