Home » Akka Child Actor

Akka Child Actor

by Online Tutorials Library

Akka Creating Child Actor

Akka provides facility to create child actor. You can create child actor by using implicit context reference. ActorSystem is used to create root-level or top-level actor. Akka provides you context so that you can create child actor also. In the following example, we have created a child actor by using context reference.

Output:

Hello RootActor Hello Child 

You may also like