I work with Akka and we are still going to get to know each other.
My scenario: I chose a non-default manager for the supervisor (parent) whose role is to manage (control) and create child entities to do the work.
Question: Do children of the parent actor act ?
I know that you can explicitly specify a different dispatcher for child participants from the parent players specified in the setting.
akka.actor.deployment { /my-parent-actor { dispatcher = dispatcher-for-parent } "/my-parent-actor/*" { dispatcher = dispatcher-for-children } }
My question is, if you specify the dispatcher of the parent actor without explicitly specifying the dispatcher for child players, there is inheritance for the children of the parent actor.
inheritance scala akka parent-child dispatcher
neurozen
source share