| PersistenceExtensionSnapshotStoreFor Method |
Returns a snapshot store plugin actor identified by snapshotPluginId.
When empty, looks in `akka.persistence.snapshot-store.plugin` to find configuration entry path.
When configured, uses snapshotPluginId as absolute path to the snapshot store configuration entry.
Configuration entry must contain few required fields, such as `class`. See `persistence.conf`.
Namespace:
Akka.Persistence
Assembly:
Akka.Persistence (in Akka.Persistence.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax public IActorRef SnapshotStoreFor(
string snapshotPluginId
)
member SnapshotStoreFor :
snapshotPluginId : string -> IActorRef
Parameters
- snapshotPluginId
- Type: SystemString
TBD
Return Value
Type:
IActorRefTBD
Exceptions Exception | Condition |
---|
ArgumentException |
This exception is thrown when either the plugin class name is undefined or the configuration path is missing.
|
See Also