It is with great pleasure I announce that all tests are green, I now challenge thee, Jenkins, to repeat it for me.

This commit is contained in:
Viktor Klang 2011-11-14 11:18:17 +01:00
parent d978758c8e
commit 31fbe76e06
10 changed files with 51 additions and 64 deletions

View file

@ -271,9 +271,9 @@ private[akka] case class RemoteActorRef private[akka] (
protected[akka] def sendSystemMessage(message: SystemMessage): Unit = unsupported
def tell(message: Any, sender: ActorRef): Unit = remote.send(message, Option(sender), remoteAddress, this, loader)
override def !(message: Any)(implicit sender: ActorRef = null): Unit = remote.send(message, Option(sender), remoteAddress, this, loader)
def ?(message: Any)(implicit timeout: Timeout): Future[Any] = remote.app.provider.ask(message, this, timeout)
override def ?(message: Any)(implicit timeout: Timeout): Future[Any] = remote.app.provider.ask(message, this, timeout)
def suspend(): Unit = ()