diff --git a/akka-docs/java/serialization.rst b/akka-docs/java/serialization.rst index 576b8c50ee..4c7b023959 100644 --- a/akka-docs/java/serialization.rst +++ b/akka-docs/java/serialization.rst @@ -109,6 +109,23 @@ you might want to know how to serialize and deserialize them properly, here's th .. includecode:: code/akka/docs/serialization/SerializationDocTestBase.java :include: imports,actorref-serializer +Deep serialization of Actors +---------------------------- + +The current recommended approach to do deep serialization of internal actor state is to use Event Sourcing, +for more reading on the topic, see these examples: + +`Martin Krasser on EventSourcing Part1 `_ + +`Martin Krasser on EventSourcing Part2 `_ + + +.. note:: + + Built-in API support for persisting Actors will come in a later release, see the roadmap for more info: + + `Akka 2.0 roadmap `_ + A Word About Java Serialization =============================== diff --git a/akka-docs/scala/serialization.rst b/akka-docs/scala/serialization.rst index 4811805ebd..2ab0a7b633 100644 --- a/akka-docs/scala/serialization.rst +++ b/akka-docs/scala/serialization.rst @@ -107,6 +107,23 @@ you might want to know how to serialize and deserialize them properly, here's th .. includecode:: code/akka/docs/serialization/SerializationDocSpec.scala :include: imports,actorref-serializer +Deep serialization of Actors +---------------------------- + +The current recommended approach to do deep serialization of internal actor state is to use Event Sourcing, +for more reading on the topic, see these examples: + +`Martin Krasser on EventSourcing Part1 `_ + +`Martin Krasser on EventSourcing Part2 `_ + + +.. note:: + + Built-in API support for persisting Actors will come in a later release, see the roadmap for more info: + + `Akka 2.0 roadmap `_ + A Word About Java Serialization ===============================