object Actor
- Source
- Actor.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Actor
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
-
type
Receive = PartialFunction[Any, Unit]
Type alias representing a Receive-expression for Akka Actors.
Value Members
-
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.
-
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()
-
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()