+per #16339 adds actorSelection support to AtLeastOnceDelivery

TODO: need to add docs updates
This commit is contained in:
Konrad Malawski 2015-07-09 18:01:27 +02:00
parent 235df6ce09
commit b335b6ae9b
10 changed files with 183 additions and 75 deletions

View file

@ -4,7 +4,7 @@
package docs.pattern
import akka.actor.{ActorSystem, Props}
import akka.actor.{ ActorSystem, Props }
import akka.pattern.BackoffSupervisor
import akka.testkit.TestActors.EchoActor
@ -16,7 +16,7 @@ class BackoffSupervisorDocSpec {
//#backoff
val childProps = Props(classOf[EchoActor])
val supervisor = BackoffSupervisor.props(
childProps,
childName = "myEcho",