Re: [akka-user] creating akka actors by using context.actorOf

2014-11-07 Thread Konrad 'ktoso' Malawski
Hello there, Have you read this section of the docs?  http://doc.akka.io/docs/akka/2.3.6/java/untyped-actors.html#creating-actors-with-props context is a method available to Actors, it starts “child actors”, and not “top level actors” (it’s cheaper - do this). --  Konrad 'ktoso' Malawski hAkker @

[akka-user] creating akka actors by using context.actorOf

2014-11-06 Thread Krishna Kadam
Hi, On stackoverflow I read that creating akka actors using context.actorOf instead of actorSystem.actorOf incures less cost, but I don't know how to obtain this context in java. thanks Krishna Kadam -- >> Read the docs: http://akka.io/docs/ >> Check the FAQ: >