Force local akka serialization

244 Views Asked by At

I have some doubts regarding akka remote and serialization (what I can and can't do) and for this reason I want to force akka to use remote in the local actor systems.

How can I acheive that?

1

There are 1 best solutions below

0
On BEST ANSWER

You can turn on serialization for all messages (remote and local):

akka {
  actor {
    serialize-messages = on
  }
}