!per #3828 Rename receiveReplay to receiveRecover

- because it handles messages related to recovery (snapshots and replayed messages)
This commit is contained in:
Martin Krasser 2014-01-19 17:46:32 +01:00
parent 34f9f4cfb9
commit e0f5cf5f2c
13 changed files with 30 additions and 30 deletions

View file

@ -295,7 +295,7 @@ trait PersistenceDocSpec {
channel ! Deliver(Persistent(event), destination.path)
}
def receiveReplay: Receive = {
def receiveRecover: Receive = {
case event: String => handleEvent(event)
}