Package akka.stream.stage
Class GraphStageLogic.ConditionalTerminateOutput
- java.lang.Object
-
- akka.stream.stage.GraphStageLogic.ConditionalTerminateOutput
-
- All Implemented Interfaces:
OutHandler
- Enclosing class:
- GraphStageLogic
public static class GraphStageLogic.ConditionalTerminateOutput extends java.lang.Object implements OutHandler
-
-
Constructor Summary
Constructors Constructor Description ConditionalTerminateOutput(scala.Function0<java.lang.Object> predicate)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidonDownstreamFinish()Called when the output port will no longer accept any new elements.voidonPull()Called when the output port has received a pull, and therefore ready to emit an element, i.e.
-
-
-
Method Detail
-
onDownstreamFinish
public void onDownstreamFinish()
Description copied from interface:OutHandlerCalled when the output port will no longer accept any new elements. After this callback no other callbacks will be called for this port.- Specified by:
onDownstreamFinishin interfaceOutHandler
-
onPull
public void onPull()
Description copied from interface:OutHandlerCalled when the output port has received a pull, and therefore ready to emit an element, i.e. {@link GraphStageLogic.push()} is now allowed to be called on this port.- Specified by:
onPullin interfaceOutHandler
-
-