Package org.apache.pekko.actor
Class ActorSelection$
- java.lang.Object
- 
- org.apache.pekko.actor.ActorSelection$
 
- 
- All Implemented Interfaces:
- java.io.Serializable
 
 public class ActorSelection$ extends java.lang.Object implements java.io.SerializableAn ActorSelection is a logical view of a section of an ActorSystem's tree of Actors, allowing for broadcasting of messages to that section.- See Also:
- Serialized Form
 
- 
- 
Field SummaryFields Modifier and Type Field Description static ActorSelection$MODULE$Static reference to the singleton instance of this Scala object.
 - 
Constructor SummaryConstructors Constructor Description ActorSelection$()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description ActorSelectionapply(ActorRef anchorRef, java.lang.String path)Construct an ActorSelection from the given string representing a path relative to the given target.ActorSelectionapply(ActorRef anchorRef, scala.collection.Iterable<java.lang.String> elements)Construct an ActorSelection from the given string representing a path relative to the given target.ScalaActorSelectiontoScala(ActorSelection sel)
 
- 
- 
- 
Field Detail- 
MODULE$public static final ActorSelection$ MODULE$ Static reference to the singleton instance of this Scala object.
 
- 
 - 
Method Detail- 
toScalapublic ScalaActorSelection toScala(ActorSelection sel) 
 - 
applypublic ActorSelection apply(ActorRef anchorRef, 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.
 - 
applypublic ActorSelection apply(ActorRef anchorRef, scala.collection.Iterable<java.lang.String> elements) 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.
 
- 
 
-