Packages

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
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ActorSelection
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. 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.

  2. 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.

  3. implicit def toScala(sel: ActorSelection): ScalaActorSelection