-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request akka#16794 from carrot-garden/persistence-multiple…
…-plugins +per akka#15587 Make it possible to use multiple persistence plugins
- Loading branch information
Showing
14 changed files
with
438 additions
and
228 deletions.
There are no files selected for viewing
31 changes: 31 additions & 0 deletions
31
akka-docs/rst/java/code/docs/persistence/PersistenceMultiDocTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/** | ||
* Copyright (C) 2009-2014 Typesafe Inc. <http://www.typesafe.com> | ||
*/ | ||
|
||
package docs.persistence; | ||
|
||
import akka.persistence.UntypedPersistentActor; | ||
|
||
public class PersistenceMultiDocTest { | ||
|
||
//#default-plugins | ||
abstract class ActorWithDefaultPlugins extends UntypedPersistentActor { | ||
@Override | ||
public String persistenceId() { return "123"; } | ||
} | ||
//#default-plugins | ||
|
||
//#override-plugins | ||
abstract class ActorWithOverridePlugins extends UntypedPersistentActor { | ||
@Override | ||
public String persistenceId() { return "123"; } | ||
// Absolute path to the journal plugin configuration entry in the `reference.conf` | ||
@Override | ||
public String journalPluginId() { return "akka.persistence.chronicle.journal"; } | ||
// Absolute path to the snapshot store plugin configuration entry in the `reference.conf` | ||
@Override | ||
public String snapshotPluginId() { return "akka.persistence.chronicle.snapshot-store"; } | ||
} | ||
//#override-plugins | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
57 changes: 57 additions & 0 deletions
57
akka-docs/rst/scala/code/docs/persistence/PersistenceMultiDocSpec.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
/** | ||
* Copyright (C) 2009-2014 Typesafe Inc. <http://www.typesafe.com> | ||
*/ | ||
|
||
import akka.persistence.PersistentActor | ||
|
||
object PersistenceMultiDocSpec { | ||
|
||
val DefaultConfig = """ | ||
//#default-config | ||
# Absolute path to the default journal plugin configuration entry. | ||
akka.persistence.journal.plugin = "akka.persistence.journal.inmem" | ||
# Absolute path to the default snapshot store plugin configuration entry. | ||
akka.persistence.snapshot-store.plugin = "akka.persistence.snapshot-store.local" | ||
//#default-config | ||
""" | ||
|
||
//#default-plugins | ||
trait ActorWithDefaultPlugins extends PersistentActor { | ||
override def persistenceId = "123" | ||
} | ||
//#default-plugins | ||
|
||
val OverrideConfig = """ | ||
//#override-config | ||
# Configuration entry for the custom journal plugin, see `journalPluginId`. | ||
akka.persistence.chronicle.journal { | ||
# Standard persistence extension property: provider FQCN. | ||
class = "akka.persistence.chronicle.ChronicleSyncJournal" | ||
# Custom setting specific for the journal `ChronicleSyncJournal`. | ||
folder = ${user.dir}/store/journal | ||
# Standard persistence extension property: plugin actor uses config injection. | ||
inject-config = true | ||
} | ||
# Configuration entry for the custom snapshot store plugin, see `snapshotPluginId`. | ||
akka.persistence.chronicle.snapshot-store { | ||
# Standard persistence extension property: provider FQCN. | ||
class = "akka.persistence.chronicle.ChronicleSnapshotStore" | ||
# Custom setting specific for the snapshot store `ChronicleSnapshotStore`. | ||
folder = ${user.dir}/store/snapshot | ||
# Standard persistence extension property: plugin actor uses config injection. | ||
inject-config = true | ||
} | ||
//#override-config | ||
""" | ||
|
||
//#override-plugins | ||
trait ActorWithOverridePlugins extends PersistentActor { | ||
override def persistenceId = "123" | ||
// Absolute path to the journal plugin configuration entry in the `reference.conf`. | ||
override def journalPluginId = "akka.persistence.chronicle.journal" | ||
// Absolute path to the snapshot store plugin configuration entry in the `reference.conf`. | ||
override def snapshotPluginId = "akka.persistence.chronicle.snapshot-store" | ||
} | ||
//#override-plugins | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.