Re: [akka-user] How to exluce actors when using serialize-creators

2015-11-24 Thread Akka Team
Hi Michael, You can use props.withDeploy(Deploy.local) where props is the Props of the actor you want to instantiate. This will disable the serialization check for that actor (of course you need to pass the props returned by withDeploy to actorOf) -Endre On Tue, Nov 24, 2015 at 11:18 AM, Michi <

[akka-user] How to exluce actors when using serialize-creators

2015-11-24 Thread Michi
Hi, we are using Akka for a modular application where various modules provide services. The application was initially developed without Akka. To support multiprocessing, we added special modules that can send and receive data using TCP / UDP. The application now uses Akka, but we still use our