Remove akka typed actor system implementation

The end goal for akka is to have a new runtime that can be optomoized
for typed actors. However to get the API production ready so it can
start getting adopted  it has been decided to only have adapted actor
systems initially.

Further discussion here: https://github.com/akka/akka/issues/24149
This commit is contained in:
Christopher Batey 2017-12-18 12:09:59 +00:00
parent f7b3b483a8
commit c394ee7aaa
44 changed files with 194 additions and 2810 deletions

View file

@ -445,3 +445,11 @@ def akkaModule(name: String): Project =
.settings(akka.AkkaBuild.defaultSettings)
.settings(akka.Formatting.formatSettings)
.enablePlugins(BootstrapGenjavadoc)
lazy val typedTests = taskKey[Unit]("Runs all the typed tests")
typedTests := {
(test in(actorTyped, Test)).value
(test in(actorTypedTests, Test)).value
(test in(clusterTyped, Test)).value
(test in(clusterShardingTyped, Test)).value
}