move back to explicit enqueue/dequeue delegation from Mailbox to MessageQueue, see #1844

This commit is contained in:
Roland 2012-02-21 13:22:25 +01:00
parent 587950b863
commit 3eeaadd804
8 changed files with 19 additions and 14 deletions

View file

@ -40,7 +40,7 @@ class Dispatcher(
protected[akka] def dispatch(receiver: ActorCell, invocation: Envelope) = {
val mbox = receiver.mailbox
mbox.messageQueue.enqueue(receiver.self, invocation)
mbox.enqueue(receiver.self, invocation)
registerForExecution(mbox, true, false)
}