Moved everything from Actor to ActorRef: akka-core compiles

This commit is contained in:
Jonas Bonér 2010-05-08 10:04:13 +02:00
parent 6da1b07961
commit 4de5302804
16 changed files with 962 additions and 1051 deletions

View file

@ -19,7 +19,7 @@ final class MessageInvocation(val receiver: ActorRef,
val transactionSet: Option[CountDownCommitBarrier]) {
if (receiver eq null) throw new IllegalArgumentException("receiver is null")
def invoke = receiver.actor.invoke(this)
def invoke = receiver.invoke(this)
def send = receiver.dispatcher.dispatch(this)