Package

pt.tecnico.dsi.kadmin

akka

Permalink

package akka

Visibility
  1. Public
  2. All

Type Members

  1. class BlockingActor extends Actor with ActorLogging

    Permalink
  2. class KadminActor extends Actor with PersistentActor with ActorLogging

    Permalink
  3. class Settings extends AnyRef

    Permalink

    This class holds all the settings that parameterize akka-kadmin.

    This class holds all the settings that parameterize akka-kadmin.

    By default these settings are read from the Config obtained with ConfigFactory.load().

    You can change the settings in multiple ways:

    • Change them in the default configuration file (e.g. application.conf)
    • Pass a different config holding your configurations:
    new Settings(yourConfig)

    However it will be more succinct to pass your config directly to KadminActor:

    context.actorOf(Props(classOf[KadminActor], yourConfig))
    • Extend this class overriding the settings you want to redefine
    object YourSettings extends Settings() {
      override val performDeduplication: Boolean = true
    }
    context.actorOf(Props(classOf[KadminActor], YourSettings))

Value Members

  1. object Kadmin

    Permalink
  2. object KadminActor

    Permalink

Ungrouped