Interface IPersistentIdentity
TBD
Namespace: Akka.Persistence
Assembly: Akka.Persistence.dll
Syntax
public interface IPersistentIdentity
Properties
| Improve this Doc View SourceJournalPluginId
Configuration identifier of the journal plugin servicing current persistent actor or view. When empty, looks in [akka.persistence.journal.plugin] to find configuration entry path. Otherwise uses string value as an absolute path to the journal configuration entry.
Declaration
string JournalPluginId { get; }
Property Value
Type | Description |
---|---|
String |
PersistenceId
Identifier of the persistent identity for which messages should be replayed.
Declaration
string PersistenceId { get; }
Property Value
Type | Description |
---|---|
String |
SnapshotPluginId
Configuration identifier of the snapshot store plugin servicing current persistent actor or view. When empty, looks in [akka.persistence.snapshot-store.plugin] to find configuration entry path. Otherwise uses string value as an absolute path to the snapshot store configuration entry.
Declaration
string SnapshotPluginId { get; }
Property Value
Type | Description |
---|---|
String |