Click or drag to resize
Akka.NETUntypedPersistentActorReceiveRecover 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.42 (1.2.3.42)
Syntax
protected override sealed bool ReceiveRecover(
	Object message
)

Parameters

message
Type: SystemObject
TBD

Return Value

Type: Boolean
TBD
See Also