object GraphStageLogic

Source
GraphStage.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. GraphStageLogic
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. class ConditionalTerminateInput extends InHandler

    Input handler that terminates the state upon receiving completion if the given condition holds at that time.

    Input handler that terminates the state upon receiving completion if the given condition holds at that time. The operator fails upon receiving a failure.

  2. class ConditionalTerminateOutput extends OutHandler

    Output handler that terminates the state upon receiving completion if the given condition holds at that time.

    Output handler that terminates the state upon receiving completion if the given condition holds at that time. The operator fails upon receiving a failure.

  3. final class StageActor extends AnyRef

    Minimal actor to work with other actors and watch them in a synchronous ways

  4. final case class StageActorRefNotInitializedException() extends RuntimeException with Product with Serializable

Value Members

  1. object EagerTerminateInput extends InHandler

    Input handler that terminates the operator upon receiving completion.

    Input handler that terminates the operator upon receiving completion. The operator fails upon receiving a failure.

  2. object EagerTerminateOutput extends OutHandler

    Output handler that terminates the operator upon cancellation.

  3. object IgnoreTerminateInput extends InHandler

    Input handler that does not terminate the operator upon receiving completion.

    Input handler that does not terminate the operator upon receiving completion. The operator fails upon receiving a failure.

  4. object IgnoreTerminateOutput extends OutHandler

    Output handler that does not terminate the operator upon cancellation.

  5. object StageActorRef
  6. object TotallyIgnorantInput extends InHandler

    Input handler that does not terminate the operator upon receiving completion nor failure.