Quantcast
Channel: Akka Libraries - Discussion Forum for Akka technologies
Viewing all articles
Browse latest Browse all 1362

What is 'akka.home' configuration?

$
0
0

@kstokoz wrote:

In akka there is akka.home property is configuration, what is it used for?

 val EnvHome = System.getenv("AKKA_HOME") match {
    case null | "" | "." ⇒ None
    case value           ⇒ Some(value)
  }

  val SystemHome = System.getProperty("akka.home") match {
    case null | "" ⇒ None
    case value     ⇒ Some(value)
  }

  val GlobalHome = SystemHome orElse EnvHome

If I check akka source code it looks like it is no longer in use, is it legacy?

Regards,
Kyrylo

Posts: 1

Participants: 1

Read full topic


Viewing all articles
Browse latest Browse all 1362

Trending Articles