InHandler

org.apache.pekko.stream.stage.InHandler
trait InHandler

Collection of callbacks for an input port of a GraphStage

Attributes

Source
GraphStage.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes

Members list

Value members

Abstract methods

def onPush(): Unit

Called when the input port has a new element available. The actual element can be retrieved via the GraphStageLogic.grab method.

Called when the input port has a new element available. The actual element can be retrieved via the GraphStageLogic.grab method.

Attributes

Source
GraphStage.scala

Concrete methods

Called when the input port has failed. After this callback no other callbacks will be called for this port.

Called when the input port has failed. After this callback no other callbacks will be called for this port.

Attributes

Source
GraphStage.scala

Called when the input port is finished. After this callback no other callbacks will be called for this port.

Called when the input port is finished. After this callback no other callbacks will be called for this port.

Attributes

Source
GraphStage.scala