In the Akka docs, I’m seeing this paragraph: *Properly serializable Props can now be created for actors which take constructor arguments by using Props(classOf[MyActor], arg1, arg2, …). In a future update—possibly within the 2.2.x timeframe—we plan to introduce a macro which will transform the by-name argument to Props(new MyActor(…)) into a call to the former.*
This doesn’t work for me. I need the old way of creating actors, as in: system.actorOf(Props(createMySpecialActor())) Is this no longer possible? -- Alexandru Nedelcu www.bionicspirit.com PGP Public Key: https://bionicspirit.com/key.aexpk -- >>>>>>>>>> Read the docs: http://akka.io/docs/ >>>>>>>>>> Check the FAQ: http://akka.io/faq/ >>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user --- You received this message because you are subscribed to the Google Groups "Akka User List" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/akka-user. For more options, visit https://groups.google.com/groups/opt_out.
