object IgnoreTerminateOutput extends OutHandler
Ordering
- Alphabetic
- By Inheritance
Inherited
- IgnoreTerminateOutput
- OutHandler
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- def onDownstreamFinish(cause: Throwable): Unit
Called when the output port will no longer accept any new elements.
Called when the output port will no longer accept any new elements. After this callback no other callbacks will be called for this port.
- Definition Classes
- → OutHandler
- def onPull(): Unit
Called when the output port has received a pull, and therefore ready to emit an element, i.e.
Called when the output port has received a pull, and therefore ready to emit an element, i.e. GraphStageLogic.push is now allowed to be called on this port.
- Definition Classes
- → OutHandler
- def toString(): String
- Definition Classes
- IgnoreTerminateOutput → AnyRef → Any
Deprecated Value Members
- def onDownstreamFinish(): Unit
Called when the output port will no longer accept any new elements.
Called when the output port will no longer accept any new elements. After this callback no other callbacks will be called for this port.
- Definition Classes
- OutHandler
- Annotations
- @throws(classOf[Exception]) @deprecatedOverriding() @deprecated
- Deprecated
(Since version 2.6.0) Call onDownstreamFinish with a cancellation cause.
Output handler that does not terminate the operator upon cancellation.