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

@ -211,12 +211,12 @@ class CallingThreadDispatcher(_app: ActorSystem, val name: String = "calling-thr
true
} catch {
case ie: InterruptedException
app.mainbus.publish(Error(this, ie))
app.eventStream.publish(Error(this, ie))
Thread.currentThread().interrupt()
intex = ie
true
case e
app.mainbus.publish(Error(this, e))
app.eventStream.publish(Error(this, e))
queue.leave
false
}