public interface PersistenceIdentity
PersistentActor
or PersistentView
.Modifier and Type | Method and Description |
---|---|
java.lang.String |
journalPluginId()
Configuration id of the journal plugin servicing this persistent actor or view.
|
java.lang.String |
persistenceId()
Id of the persistent entity for which messages should be replayed.
|
java.lang.String |
snapshotPluginId()
Configuration id of the snapshot plugin servicing this persistent actor or view.
|
java.lang.String persistenceId()
java.lang.String journalPluginId()
akka.persistence.journal.plugin
to find configuration entry path.
When configured, uses journalPluginId
as absolute path to the journal configuration entry.
Configuration entry must contain few required fields, such as class
. See src/main/resources/reference.conf
.java.lang.String snapshotPluginId()
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 src/main/resources/reference.conf
.