!per #3828 Rename receiveReplay to receiveRecover
- because it handles messages related to recovery (snapshots and replayed messages)
This commit is contained in:
parent
34f9f4cfb9
commit
e0f5cf5f2c
13 changed files with 30 additions and 30 deletions
|
|
@ -70,7 +70,7 @@ class ExampleProcessor extends UntypedEventsourcedProcessor {
|
|||
return state.size();
|
||||
}
|
||||
|
||||
public void onReceiveReplay(Object msg) {
|
||||
public void onReceiveRecover(Object msg) {
|
||||
if (msg instanceof Evt) {
|
||||
state.update((Evt) msg);
|
||||
} else if (msg instanceof SnapshotOffer) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue