move everything into package akka.pattern

This commit is contained in:
Roland 2012-01-18 10:18:51 +01:00
parent 9c762dec20
commit 2bed2cb954
59 changed files with 73 additions and 73 deletions

View file

@ -120,7 +120,7 @@ class TestkitDocSpec extends AkkaSpec with DefaultTimeout with ImplicitSender {
import akka.testkit.TestActorRef
import akka.util.duration._
import akka.dispatch.Await
import akka.patterns.ask
import akka.pattern.ask
val actorRef = TestActorRef(new MyActor)
// hypothetical message stimulating a '42' answer
@ -204,7 +204,7 @@ class TestkitDocSpec extends AkkaSpec with DefaultTimeout with ImplicitSender {
"demonstrate probe reply" in {
import akka.testkit.TestProbe
import akka.util.duration._
import akka.patterns.ask
import akka.pattern.ask
//#test-probe-reply
val probe = TestProbe()
val future = probe.ref ? "hello"