object IgnoreTerminateInput extends InHandler
Ordering
- Alphabetic
- By Inheritance
Inherited
- IgnoreTerminateInput
- InHandler
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- def onPush(): Unit
Called when the input port has a new element available.
Called when the input port has a new element available. The actual element can be retrieved via the GraphStageLogic.grab method.
- Definition Classes
- → InHandler
- def onUpstreamFailure(ex: Throwable): Unit
Called when the input port has failed.
Called when the input port has failed. After this callback no other callbacks will be called for this port.
- Definition Classes
- InHandler
- Annotations
- @throws(classOf[Exception])
- def onUpstreamFinish(): Unit
Called when the input port is finished.
Called when the input port is finished. After this callback no other callbacks will be called for this port.
- Definition Classes
- → InHandler
- def toString(): String
- Definition Classes
- IgnoreTerminateInput → AnyRef → Any
Input handler that does not terminate the operator upon receiving completion. The operator fails upon receiving a failure.