简体   繁体   中英

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?

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"

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM