Package org.apache.pekko.persistence
Interface RuntimePluginConfig
public interface RuntimePluginConfig
-
Method Summary
Modifier and TypeMethodDescriptioncom.typesafe.config.ConfigAdditional configuration of the journal plugin servicing this persistent actor.com.typesafe.config.ConfigAdditional configuration of the snapshot plugin servicing this persistent actor.
-
Method Details
-
journalPluginConfig
com.typesafe.config.Config journalPluginConfig()Additional configuration of the journal plugin servicing this persistent actor. When empty, the whole configuration of the journal plugin will be taken from theConfigloaded into thepekko.actor.ActorSystem. When configured, the journal plugin configuration will be taken from thisConfigmerged with theConfigloaded into thepekko.actor.ActorSystem.- Returns:
- an additional configuration used to configure the journal plugin.
-
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 theConfigloaded into thepekko.actor.ActorSystem. When configured, the snapshot plugin configuration will be taken from thisConfigmerged with theConfigloaded into thepekko.actor.ActorSystem.- Returns:
- an additional configuration used to configure the snapshot plugin.
-