I'm working with Akka and we are still getting to get to know each other.
My scenario is : I have chosen a non-default dispatcher for a supervisor (parent) actor who's role is to manage (supervise) and create child actors to do the work.
Question : Does the child actors inherit the parent's actor?
I am aware that you can explicitly specify a different dispatcher for child actors from parent actors given specifying in the configuration.
akka.actor.deployment {
/my-parent-actor {
dispatcher = dispatcher-for-parent
}
"/my-parent-actor/*" {
dispatcher = dispatcher-for-children
}
}
My question is about if you specify the parent actor dispatcher, without explicitly specifying a dispatcher for the children actors, is there inheritance to the children of the parent's actor.