Broadcasts events to methods on components annotated with {@link Subscribe}. {@linkplain EventBus#post(Object) Posted} events are broadcasted to all components on activepages if they have a method annotated with {@link Subscribe}. To create and register an {@code EventBus}, put the following code in your application's init method:
this.eventBus = new EventBus(this);
The {@code EventBus} will register itself in the application once instantiated. It might bepractical to keep a reference in the application, but you can always get it using {@link #get()}.
@author papegaaij