abstract class AbstractInHandler extends InHandler
Ordering
- Alphabetic
- By Inheritance
Inherited
- AbstractInHandler
- InHandler
- AnyRef
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new AbstractInHandler()
Abstract Value Members
- abstract 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
- Annotations
- @throws(classOf[Exception])
Concrete Value Members
- 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
- Annotations
- @throws(classOf[Exception])
Java API: callbacks for an input port where termination logic is predefined (completing when upstream completes, failing when upstream fails).