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

2017-09-16 Thread Kevin Osborn
akka/blob/master/akka-remote/src/main/scala/akka/remote/serialization/MiscMessageSerializer.scala > > https://github.com/akka/akka/blob/master/akka-remote/src/main/scala/akka/remote/serialization/ThrowableSupport.scala > > /Patrik > > > > On Sep 16, 2017, at 00:59, Kevin Osbo

[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

[akka-user] Multiple Akka Camel consumers

2015-04-06 Thread Kevin Osborn
I want to have up to X number of parallel Akka consumers jobs running at once. This is request/response, so I have autoAck disabled. So, I created a RoundRobinRouter with X number of worker actors all set to the same endpoint (activemq:queue:my.companies.queue). If I start the consumer