Moved everything from Actor to ActorRef: akka-core compiles
This commit is contained in:
parent
6da1b07961
commit
4de5302804
16 changed files with 962 additions and 1051 deletions
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue