Packages

package akka

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. class BlockingActor extends Actor with ActorLogging
  2. class KadminActor extends Actor with PersistentActor with ActorLogging
  3. class Settings extends AnyRef

    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
  2. object KadminActor

Ungrouped