rename MainBus to EventStream (incl. field in ActorSystem)
This commit is contained in:
parent
945b1aedf9
commit
53353d7031
30 changed files with 88 additions and 88 deletions
|
|
@ -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()
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue