object ActorSelection extends Serializable
An ActorSelection is a logical view of a section of an ActorSystem's tree of Actors, allowing for broadcasting of messages to that section.
- Source
- ActorSelection.scala
- Alphabetic
- By Inheritance
- ActorSelection
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- def apply(anchorRef: ActorRef, elements: Iterable[String]): ActorSelection
Construct an ActorSelection from the given string representing a path relative to the given target.
Construct an ActorSelection from the given string representing a path relative to the given target. This operation has to create all the matching magic, so it is preferable to cache its result if the intention is to send messages frequently.
- def apply(anchorRef: ActorRef, path: String): ActorSelection
Construct an ActorSelection from the given string representing a path relative to the given target.
Construct an ActorSelection from the given string representing a path relative to the given target. This operation has to create all the matching magic, so it is preferable to cache its result if the intention is to send messages frequently.
- implicit def toScala(sel: ActorSelection): ScalaActorSelection