class ConditionalTerminateOutput extends OutHandler
Ordering
- Alphabetic
- By Inheritance
Inherited
- ConditionalTerminateOutput
- OutHandler
- AnyRef
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- 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
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 terminates the state upon receiving completion if the given condition holds at that time. The operator fails upon receiving a failure.