2019-07-05 08:21:38 +02:00
|
|
|
# Classic Actors
|
|
|
|
|
|
2019-09-03 13:23:47 -07:00
|
|
|
@@include[includes.md](includes.md) { #actor-api }
|
2013-04-19 13:21:15 +02:00
|
|
|
|
2018-05-15 18:44:33 +09:00
|
|
|
## Dependency
|
|
|
|
|
|
2019-07-05 08:21:38 +02:00
|
|
|
To use Classic Akka Actors, you must add the following dependency in your project:
|
2018-05-15 18:44:33 +09:00
|
|
|
|
|
|
|
|
@@dependency[sbt,Maven,Gradle] {
|
|
|
|
|
group="com.typesafe.akka"
|
|
|
|
|
artifact="akka-actor_$scala.binary_version$"
|
|
|
|
|
version="$akka.version$"
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-10 16:20:38 +02:00
|
|
|
@@toc { depth=2 }
|
2013-04-19 13:21:15 +02:00
|
|
|
|
2017-05-10 16:20:38 +02:00
|
|
|
@@@ index
|
|
|
|
|
|
|
|
|
|
* [actors](actors.md)
|
|
|
|
|
* [fault-tolerance](fault-tolerance.md)
|
|
|
|
|
* [dispatchers](dispatchers.md)
|
|
|
|
|
* [mailboxes](mailboxes.md)
|
|
|
|
|
* [routing](routing.md)
|
|
|
|
|
* [fsm](fsm.md)
|
|
|
|
|
* [persistence](persistence.md)
|
2018-08-22 10:47:32 +01:00
|
|
|
* [persistence-fsm](persistence-fsm.md)
|
2017-05-10 16:20:38 +02:00
|
|
|
* [testing](testing.md)
|
|
|
|
|
|
2017-07-10 09:38:07 -07:00
|
|
|
@@@
|