object AbstractActor
- Alphabetic
- By Inheritance
- AbstractActor
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- 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()
- 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 ScalaPartialFunction
. In Java, you can implementPartialFunction
by extendingAbstractPartialFunction
.