How can I get the name of an Akka actor from within the actor itself?

ScalaAkka

Scala Problem Overview


So, if I have an actor, I can give it a name. But, can I access that name internally? Example:

class Actorz extends Actor with ActorLogging {
   val actorName = //??What function

   def receive = {
     case x => log.debug(actorName+": Received Message: "+x)
   }
}

val actor = system.actorOf(Props[Actorz], "named")
actor ! "dogs"

Now, I can pass its name as a constructor parameter. But, that seems like unnecessary duplication if there is a way to get the name internally... as it was set when I instantiated the actor using system.actorOf. API docs didn't seem to have anything.

Scala Solutions


Solution 1 - Scala

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionDante RomeroView Question on Stackoverflow
Solution 1 - ScalaChris MartinView Answer on Stackoverflow