decoupled the mailbox implementation from the actor. The implementation is now controled by dispatcher associated with the actor.

This commit is contained in:
Hiram Chirino 2010-07-21 09:44:18 -04:00
parent bc29b0ef2e
commit cc7da99bea
9 changed files with 61 additions and 46 deletions

View file

@ -40,8 +40,6 @@ class ThreadBasedDispatcher(private val actor: ActorRef) extends MessageDispatch
def isShutdown = !active
def usesActorMailbox = false
def shutdown = if (active) {
log.debug("Shutting down %s", toString)
active = false