Package akka.persistence
Interface PersistenceIdentity
-
- All Known Subinterfaces:
AbstractPersistentActorLike,AtLeastOnceDelivery,AtLeastOnceDeliveryLike,Eventsourced,PersistentActor
- All Known Implementing Classes:
AbstractPersistentActor,AbstractPersistentActorWithAtLeastOnceDelivery,AbstractPersistentActorWithTimers,JournalPerfSpec.BenchActor,PersistentShardCoordinator
public interface PersistenceIdentityIdentification ofPersistentActor.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringjournalPluginId()Configuration id of the journal plugin servicing this persistent actor.java.lang.StringpersistenceId()Id of the persistent entity for which messages should be replayed.java.lang.StringsnapshotPluginId()Configuration id of the snapshot plugin servicing this persistent actor.
-
-
-
Method Detail
-
journalPluginId
java.lang.String journalPluginId()
Configuration id of the journal plugin servicing this persistent actor. When empty, looks inakka.persistence.journal.pluginto find configuration entry path. When configured, usesjournalPluginIdas absolute path to the journal configuration entry. Configuration entry must contain few required fields, such asclass. Seesrc/main/resources/reference.conf.
-
persistenceId
java.lang.String persistenceId()
Id of the persistent entity for which messages should be replayed.
-
snapshotPluginId
java.lang.String snapshotPluginId()
Configuration id of the snapshot plugin servicing this persistent actor. When empty, looks inakka.persistence.snapshot-store.pluginto find configuration entry path. When configured, usessnapshotPluginIdas absolute path to the snapshot store configuration entry. Configuration entry must contain few required fields, such asclass. Seesrc/main/resources/reference.conf.
-
-