akka.actor
Class ActorSelection$

java.lang.Object
  extended by akka.actor.ActorSelection$

public class ActorSelection$
extends java.lang.Object

An ActorSelection is a logical view of a section of an ActorSystem's tree of Actors, allowing for broadcasting of messages to that section.


Field Summary
static ActorSelection$ MODULE$
          Static reference to the singleton instance of this Scala object.
 
Constructor Summary
ActorSelection$()
           
 
Method Summary
 ActorSelection apply(ActorRef anchor, java.lang.String path)
          Construct an ActorSelection from the given string representing a path relative to the given target.
 ScalaActorSelection toScala(ActorSelection sel)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

MODULE$

public static final ActorSelection$ MODULE$
Static reference to the singleton instance of this Scala object.

Constructor Detail

ActorSelection$

public ActorSelection$()
Method Detail

toScala

public ScalaActorSelection toScala(ActorSelection sel)

apply

public ActorSelection apply(ActorRef anchor,
                            java.lang.String path)
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.