Interface RetrieveConfigBehavior

  • All Superinterfaces:
    akka.actor.Actor

    public interface RetrieveConfigBehavior
    extends akka.actor.Actor
    Behavior to respond to RetrieveConfig.
    • Nested Class Summary

      • Nested classes/interfaces inherited from interface akka.actor.Actor

        akka.actor.Actor.emptyBehavior$, akka.actor.Actor.ignoringBehavior$
    • Method Summary

      All Methods Instance Methods Abstract Methods Default Methods 
      Modifier and Type Method Description
      com.typesafe.config.Config getConfig()
      Get the config.
      default akka.actor.AbstractActor.Receive retrieveConfigBehavior()
      Injectable behavior to handle RetrieveConfig.
      • Methods inherited from interface akka.actor.Actor

        akka$actor$Actor$_setter_$context_$eq, akka$actor$Actor$_setter_$self_$eq, aroundPostRestart, aroundPostStop, aroundPreRestart, aroundPreStart, aroundReceive, context, postRestart, postStop, preRestart, preStart, receive, self, sender, supervisorStrategy, unhandled
    • Method Detail

      • getConfig

        com.typesafe.config.Config getConfig()
        Get the config. Requires explicit setting because config relevant to this actor may not be context().system().settings().config().
        Returns:
        the config.
      • retrieveConfigBehavior

        default akka.actor.AbstractActor.Receive retrieveConfigBehavior()
        Injectable behavior to handle RetrieveConfig.
        Returns:
        behavior to handle RetrieveConfig.