Package akka.actor

Class ActorPaths$


  • public class ActorPaths$
    extends java.lang.Object
    Parse string as actor path; throws java.net.MalformedURLException if unable to do so.
    • Field Detail

      • MODULE$

        public static final ActorPaths$ MODULE$
        Static reference to the singleton instance of this Scala object.
    • Constructor Detail

      • ActorPaths$

        public ActorPaths$()
    • Method Detail

      • fromString

        public ActorPath fromString​(java.lang.String s)
      • validatePathElement

        public final void validatePathElement​(java.lang.String element)
        Validates the given actor path element and throws an InvalidActorNameException if invalid. See isValidPathElement(java.lang.String) for a non-throwing version.

        Parameters:
        element - actor path element to be validated
      • validatePathElement

        public final void validatePathElement​(java.lang.String element,
                                              java.lang.String fullPath)
        Validates the given actor path element and throws an InvalidActorNameException if invalid. See isValidPathElement(java.lang.String) for a non-throwing version.

        Parameters:
        element - actor path element to be validated
        fullPath - optional fullPath element that may be included for better error messages; null if not given
      • isValidPathElement

        public final boolean isValidPathElement​(java.lang.String s)
        This method is used to validate a path element (Actor Name). Since Actors form a tree, it is addressable using an URL, therefore an Actor Name has to conform to: RFC-2396.

        User defined Actor names may not start from a $ sign - these are reserved for system names.

        Parameters:
        s - (undocumented)
        Returns:
        (undocumented)