cluster apis for typed, #21226

* Cluster management (join, leave, etc)
* Cluster membership subscriptions (MemberUp, MemberRemoved, etc)
* New SelfUp and SelfRemoved events
* change signature of awaitAssert to return the value (not binary compatible)
* Cluster singleton api
This commit is contained in:
Johan Andrén 2017-09-21 17:58:29 +02:00 committed by Patrik Nordwall
parent 94f0492873
commit c31f6b862f
22 changed files with 1397 additions and 56 deletions

View file

@ -158,7 +158,12 @@ lazy val streamTestsTck = akkaModule("akka-stream-tests-tck")
.dependsOn(streamTestkit % "test->test", stream)
lazy val typed = akkaModule("akka-typed")
.dependsOn(testkit % "compile->compile;test->test", cluster % "compile->compile;test->test", distributedData)
.dependsOn(
testkit % "compile->compile;test->test",
cluster % "compile->compile;test->test",
clusterTools,
clusterSharding,
distributedData)
lazy val typedTests = akkaModule("akka-typed-tests")
.dependsOn(typed, typedTestkit % "compile->compile;test->test")