| UntypedPersistentActorReceiveRecover Method |
Recovery handler that receives persistent events during recovery. If a state snapshot has been captured and saved,
this handler will receive a
SnapshotOffer message followed by events that are younger than offer itself.
This handler must not have side-effects other than changing persistent actor state i.e. it
should not perform actions that may fail, such as interacting with external services,
for example.
If there is a problem with recovering the state of the actor from the journal, the error
will be logged and the actor will be stopped.
Namespace:
Akka.Persistence
Assembly:
Akka.Persistence (in Akka.Persistence.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax protected override sealed bool ReceiveRecover(
Object message
)
abstract ReceiveRecover :
message : Object -> bool
override ReceiveRecover :
message : Object -> bool
Parameters
- message
- Type: SystemObject
TBD
Return Value
Type:
BooleanTBD
See Also