Package akka.persistence
Interface RuntimePluginConfig
-
public interface RuntimePluginConfig
Additional configuration of the journal plugin servicing this persistent actor. When empty, the whole configuration of the journal plugin will be taken from theConfig
loaded into theActorSystem
. When configured, the journal plugin configuration will be taken from thisConfig
merged with theConfig
loaded into theActorSystem
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.typesafe.config.Config
journalPluginConfig()
com.typesafe.config.Config
snapshotPluginConfig()
Additional configuration of the snapshot plugin servicing this persistent actor.
-
-
-
Method Detail
-
journalPluginConfig
com.typesafe.config.Config journalPluginConfig()
-
snapshotPluginConfig
com.typesafe.config.Config snapshotPluginConfig()
Additional configuration of the snapshot plugin servicing this persistent actor. When empty, the whole configuration of the snapshot plugin will be taken from theConfig
loaded into theActorSystem
. When configured, the snapshot plugin configuration will be taken from thisConfig
merged with theConfig
loaded into theActorSystem
.- Returns:
- an additional configuration used to configure the snapshot plugin.
-
-