rename MainBus to EventStream (incl. field in ActorSystem)

This commit is contained in:
Roland 2011-11-10 20:48:50 +01:00
parent 945b1aedf9
commit 53353d7031
30 changed files with 88 additions and 88 deletions

View file

@ -93,7 +93,7 @@ class Dispatcher(
executorService.get() execute invocation
} catch {
case e: RejectedExecutionException
app.mainbus.publish(Warning(this, e.toString))
app.eventStream.publish(Warning(this, e.toString))
throw e
}
}
@ -120,7 +120,7 @@ class Dispatcher(
} catch {
case e: RejectedExecutionException
try {
app.mainbus.publish(Warning(this, e.toString))
app.eventStream.publish(Warning(this, e.toString))
} finally {
mbox.setAsIdle()
}