Click or drag to resize
Akka.NETPersistenceExtensionSnapshotStoreFor 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.42 (1.2.3.42)
Syntax
public IActorRef SnapshotStoreFor(
	string snapshotPluginId
)

Parameters

snapshotPluginId
Type: SystemString
TBD

Return Value

Type: IActorRef
TBD
Exceptions
ExceptionCondition
ArgumentException This exception is thrown when either the plugin class name is undefined or the configuration path is missing.
See Also