Support for more durable mailboxes

This commit is contained in:
Jonas Bonér 2010-09-27 11:59:28 +02:00
parent ecad8febe9
commit 11c1bb339d
8 changed files with 40 additions and 17 deletions

View file

@ -30,6 +30,8 @@ trait ThreadPoolBuilder extends Logging {
protected var executor: ExecutorService = _
def execute(task: Runnable) = executor execute task
def isShutdown = executor.isShutdown
def buildThreadPool(): Unit = synchronized {