Ticket 964: rename of reply?

This commit is contained in:
Peter Veentjer 2011-07-17 09:02:36 +03:00
parent e7b33d46c2
commit 7983a66f68
14 changed files with 44 additions and 36 deletions

View file

@ -192,7 +192,7 @@ class RoutingSpec extends WordSpec with MustMatchers {
case _
count.incrementAndGet
latch.countDown()
self reply_? "success"
self tryReply "success"
}
}).start()
@ -241,7 +241,7 @@ class RoutingSpec extends WordSpec with MustMatchers {
def receive = {
case req: String {
sleepFor(10 millis)
self.reply_?("Response")
self.tryReply("Response")
}
}
})