0

I have a play framework 2.0 connected to a remote akka systems in java language. I have a java array list object wrapped in a message class. the problem is that I want to send the message object to the remote akka system for computation. So , I want to know do I need to deploy the message object or do I need to serialize the message object. Can someone help me with a good explanation on the best choice and how to do the implementation.

thanks.

faisal abdulai
  • 3,739
  • 8
  • 44
  • 66

1 Answers1

0

If you make the wrapper class implement Serializable and put it in the message object, Akka should take care of the rest. (Sorry I can't be more helpful but stuff like this is much easier to deal with in the Scala version)

Jordan Denison
  • 2,649
  • 14
  • 14