Re: [akka-user] Does Event Bus require Publisher and Subscriber to be started in certain order?

2017-03-24 Thread Konrad Malawski
There is not. EventStreams do not buffer. You can just build such a thing yourself using Actors if you need to though, it's pretty simple - one actor that gets/buffers/relays messages - done. -- Konrad `ktoso` Malawski Akka @ Lightbend On 23 March 2017 at

[akka-user] Does Event Bus require Publisher and Subscriber to be started in certain order?

2017-03-23 Thread kant kodali
Hi All, Does Event Bus require Publisher and Subscriber to be started in certain order? Isn't there a Listener which will push messages to subscribers whenever they become alive? I am playing with the LookUpBus Example from here but