kisileno
kisileno

Reputation: 787

Where I can find akka actor model in default scala-lib?

Starting with Scala 2.11.0, the Scala Actors library is deprecated. Already in Scala 2.10.0 the default actor library is Akka.

Is there in standard scala library Akka? Or it's needed to get it by myself?

Upvotes: 1

Views: 213

Answers (1)

4lex1v
4lex1v

Reputation: 21557

It's not included into scala standart library, you should provide a dependency by yourself. If you are using sbt then add thee following to your build:

libraryDependencies += "com.typesafe.akka" %% "akka-actor" % "2.2.1"

Upvotes: 3

Related Questions