=pro Update test dependencies to Scala 2.11 cross published versions

This commit is contained in:
Björn Antonsson 2014-04-09 11:40:31 +02:00
parent 44f499f434
commit c8ea061472
2 changed files with 7 additions and 7 deletions

View file

@ -84,16 +84,16 @@ trait PersistenceDocSpec {
}
//#deletion
}
class MyProcessor4 extends Processor {
//#recovery-completed
override def preStart(): Unit = {
super.preStart()
self ! "FIRST"
}
def receive = initializing.orElse(active)
def initializing: Receive = {
case "FIRST" =>
recoveryCompleted()
@ -102,7 +102,7 @@ trait PersistenceDocSpec {
case other if recoveryFinished =>
stash()
}
def recoveryCompleted(): Unit = {
// perform init after recovery, before any other messages
// ...