Packages

object AbstractActor

Java API: compatible with lambda expressions

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

Type Members

  1. trait ActorContext extends actor.ActorContext

    The actor context - the view of the actor cell from the actor.

    The actor context - the view of the actor cell from the actor. Exposes contextual information for the actor and the current message.

    Not intended for public inheritance/implementation

    Annotations
    @DoNotInherit()
  2. final class Receive extends AnyRef

    Defines which messages the Actor can handle, along with the implementation of how the messages should be processed.

    Defines which messages the Actor can handle, along with the implementation of how the messages should be processed. You can build such behavior with the akka.japi.pf.ReceiveBuilder but it can be implemented in other ways than using the ReceiveBuilder since it in the end is just a wrapper around a Scala PartialFunction. In Java, you can implement PartialFunction by extending AbstractPartialFunction.

Value Members

  1. final val emptyBehavior: Receive

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