Re: [akka-user] Serialize a throwable for remote actors

2017-09-16 Thread Kevin Osborn
Thanks. Binding to akka-misc will work perfectly. Googling for terms like "akka exception serialization" made this one a hard one to fine. I will try this out on Monday, but it should work perfectly for me. On Saturday, September 16, 2017 at 7:53:55 AM UTC-7, Patrik Nordwall wrote: > > See

Re: [akka-user] Serialize a throwable for remote actors

2017-09-16 Thread Patrik Nordwall
See here: https://github.com/akka/akka/blob/master/akka-remote/src/main/resources/reference.conf#L83 You can bind the exceptions you use to the built in akka-misc serializer. If you are interested in how it's implemented look at

[akka-user] Serialize a throwable for remote actors

2017-09-15 Thread Kevin Osborn
I am using clustered persistent actors. So, my actors are going to be sending a response back to the sender. Normally, this is just going to be a CommandSuccess message, which is just a simple ack object. And since this is remote, I want to use protobuf. I am using ScalaPb. So, in this case, it