Changed event handler config to a list of the FQN of listeners

This commit is contained in:
Jonas Bonér 2011-03-07 12:18:00 +01:00
parent b090f873af
commit 939d4ca6cb
4 changed files with 26 additions and 16 deletions

View file

@ -132,7 +132,7 @@ class ExecutorBasedEventDrivenDispatcher(
executorService.get() execute mbox
} catch {
case e: RejectedExecutionException =>
EventHandler notifyListeners EventHandler.Warning(e, this, _name)
EventHandler notifyListeners EventHandler.Warning(this, e.toString)
mbox.dispatcherLock.unlock()
throw e
}