Looking to use Akka Actors to communicate events between Java threads in the same JVM. Some of these events contain large objects (10-100Mb). I want to avoid serializing the
Akka treats local message passing as an optimization, bypassing the remoting machinery which includes the message serializer. See location transparency.