Fix #16364 - Doc - Persistent actor - clarification of the recovery customization

This commit is contained in:
Marek Prochera 2014-11-21 16:59:21 +01:00
parent f2487d73f4
commit b43f3639d6
4 changed files with 44 additions and 11 deletions

View file

@ -110,6 +110,14 @@ trait PersistenceDocSpec {
}
}
new AnyRef {
trait MyProcessor1 extends PersistentActor {
//#recover-fully-disabled
override def preStart() = self ! Recover(toSequenceNr = 0L)
//#recover-fully-disabled
}
}
new AnyRef {
trait ProcessorMethods {
//#persistence-id