Remoting for Akka Typed, #21225

* seems like it will just work when using the adapters, since
  it will simply delegate to the untyped RemoteActorRef
* ActorRefResolver was added for upporting erialization of typed ActorRef
* The ActorRef itself is not serializable with Java serialization,
  and we shouldn't do that
This commit is contained in:
Patrik Nordwall 2017-09-08 10:19:43 +02:00
parent 1e4e7cbba2
commit fd11b94b1f
2 changed files with 44 additions and 1 deletions

View file

@ -158,7 +158,7 @@ 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")
.dependsOn(testkit % "compile->compile;test->test", cluster % "compile->compile;test->test")
lazy val typedTests = akkaModule("akka-typed-tests")
.dependsOn(typed, typedTestkit % "compile->compile;test->test")