Directory

Guice-Vaadin EventBus-Addon - Vaadin Add-on Directory

EventBus addon for GuiceVaadin Guice-Vaadin EventBus-Addon - Vaadin Add-on Directory
#Eventbus addon for Guice-Vaadin this addon provides integration of the [Guava EventBus](https://github.com/google/guava/wiki/EventBusExplained) into Guice-Vaadin. SessionEventBus and UIEventBus can be used as-is, these are Guava implementations that are scoped with @VaadinSessionScope and @UIScope respectively. ```java class MyButton extends Button { @Inject UIEventBus uiEventBus; Button(){ addClickHandler(e -> uiEventBus.post(new MyButtonWasClickedEvent()); } } ```