Re: [akka-user] Re: what gets serialized and when

2016-02-24 Thread Akka Team
Hi Tim, For actors, that cannot and will not be deployed remotely, you can call props.withDeploy(Deploy.local) and then they will not be checked for serialization. For messages that never meant to be through the wire and has no serialization (because maybe it refers to a local resource) you can

[akka-user] Re: what gets serialized and when

2016-02-21 Thread Tim Pigden
Ok - I think I understand this The serialize-message = on is not a mechanism to alert about messages that get serialized. it is in fact an instruction to serialize everything and then complain if it can't be. I think I assumed it was an instruction to report on problems with serialization