Please help me to figure out if the following scenarios are valid if I'm going to use Otto Bus lib.
- If I need to ensure the order of subscriber execution. I have two component that are listening for the same event type,is there the Otto Bus capability which can guarantee that constantly component1 handles an event before component2. Could the order I register them provide me that?
According to the Otto documentation
Posting to the bus is a synchronous action so when program execution continues it is guaranteed that all subscribers have been called.
Does it mean that any of event subscribers are not executed in parallel?
Thanks