Interface RetrieveConfigBehavior
-
- All Superinterfaces:
akka.actor.Actor
public interface RetrieveConfigBehavior extends akka.actor.ActorBehavior to respond toRetrieveConfig.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description com.typesafe.config.ConfiggetConfig()Get the config.default akka.actor.AbstractActor.ReceiveretrieveConfigBehavior()Injectable behavior to handleRetrieveConfig.-
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 becontext().system().settings().config().- Returns:
- the config.
-
retrieveConfigBehavior
default akka.actor.AbstractActor.Receive retrieveConfigBehavior()
Injectable behavior to handleRetrieveConfig.- Returns:
- behavior to handle
RetrieveConfig.
-
-