How to send a message to an actor's parent in Akka Classic?

akka, java

Solution

You are looking for

getContext().parent()

which gives you the ActorRef of the parent, so you can do

getContext().parent().tell(...)

Problem

What is the method for an actor to send a message to its parent? I'm using Akka 2.2

Original source

Related problems