Packages

final class StageActor extends AnyRef

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

Source
GraphStage.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StageActor
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new StageActor(materializer: ActorMaterializer, getAsyncCallback: (Receive) ⇒ AsyncCallback[(ActorRef, Any)], initialReceive: Receive)
  2. new StageActor(materializer: ActorMaterializer, getAsyncCallback: (Receive) ⇒ AsyncCallback[(ActorRef, Any)], initialReceive: Receive, name: String)

    name

    leave empty to use plain auto generated names

Value Members

  1. def become(receive: Receive): Unit

    Special become allowing to swap the behavior of this StageActorRef.

    Special become allowing to swap the behavior of this StageActorRef. Unbecome is not available.

  2. def ref: ActorRef

    The ActorRef by which this StageActor can be contacted from the outside.

    The ActorRef by which this StageActor can be contacted from the outside. This is a full-fledged ActorRef that supports watching and being watched as well as location transparent (remote) communication.

  3. def stop(): Unit
  4. def unwatch(actorRef: ActorRef): Unit
  5. def watch(actorRef: ActorRef): Unit