Packages

object Actor

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

Type Members

  1. type Receive = PartialFunction[Any, Unit]

    Type alias representing a Receive-expression for Akka Actors.

Value Members

  1. final val noSender: ActorRef

    Default placeholder (null) used for "!" to indicate that there is no sender of the message, that will be translated to the receiving system's deadLetters.

  2. object emptyBehavior extends Receive

    emptyBehavior is a Receive-expression that matches no messages at all, ever.

    emptyBehavior is a Receive-expression that matches no messages at all, ever.

    Annotations
    @SerialVersionUID()
  3. object ignoringBehavior extends Receive

    ignoringBehavior is a Receive-expression that consumes and ignores all messages.

    ignoringBehavior is a Receive-expression that consumes and ignores all messages.

    Annotations
    @SerialVersionUID()