Remove actor dsl (#26784)

* Removals of actor dsl
* Mima for actor dsl removal
* Remove inbox doc test
* Keep main in echo server example
This commit is contained in:
Christopher Batey 2019-04-25 14:53:28 +01:00 committed by Patrik Nordwall
parent 8b3fbe8107
commit 39b344c508
15 changed files with 20 additions and 1649 deletions

View file

@ -724,14 +724,6 @@ class ActorDocSpec extends AkkaSpec("""
lastSender.path.toStringWithoutAddress should be("/user")
}
"using ActorDSL outside of akka.actor package" in {
import akka.actor.ActorDSL._
actor(new Act {
superviseWith(OneForOneStrategy() { case _ => Stop; Restart; Resume; Escalate })
superviseWith(AllForOneStrategy() { case _ => Stop; Restart; Resume; Escalate })
})
}
"using CoordinatedShutdown" in {
val someActor = system.actorOf(Props(classOf[Replier], this))
//#coordinated-shutdown-addTask