Reputation: 787
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
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