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 SummaryAll 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- 
journalPluginIdjava.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.
 - 
persistenceIdjava.lang.String persistenceId() Id of the persistent entity for which messages should be replayed.
 - 
snapshotPluginIdjava.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.
 
- 
 
-