Interface PersistenceIdentity

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String journalPluginId()
      Configuration id of the journal plugin servicing this persistent actor.
      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.
    • Method Detail

      • journalPluginId

        java.lang.String journalPluginId()
        Configuration id of the journal plugin servicing this persistent actor. When empty, looks in 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.
        Returns:
        (undocumented)
      • persistenceId

        java.lang.String persistenceId()
        Id of the persistent entity for which messages should be replayed.
        Returns:
        (undocumented)
      • snapshotPluginId

        java.lang.String snapshotPluginId()
        Configuration id of the snapshot plugin servicing this persistent actor. 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 src/main/resources/reference.conf.
        Returns:
        (undocumented)