pt.tecnico.dsi.akkastrator
This class holds all the settings that parameterize akkastrator.
By default these settings are read from the Config obtained with ConfigFactory.load().
ConfigFactory.load()
You can change the settings in multiple ways:
new Settings(yourConfig)
However it will be more succinct to pass your config directly to your akkastrator:
context.actorOf(Props(classOf[YourAkkastrator], yourConfig))
object YourSettings extends Settings() { override val saveSnapshotEveryXMessages = 1000 } context.actorOf(Props(classOf[YourAkkastrator], YourSettings))
This class holds all the settings that parameterize akkastrator.
By default these settings are read from the Config obtained with
ConfigFactory.load().You can change the settings in multiple ways:
new Settings(yourConfig)However it will be more succinct to pass your config directly to your akkastrator: