I am prototyping with Vaadin and trying to implement MVP. I want to propagate events via Guava's EventBus - so I am making all my presenters to implement this interface:
public interface EventBusAware {
EventBus eventBus = EventBusHolder.INSTANCE.get();
}
Now the purpose of the EventBusHolder is to keep EventBus relative to all presenters within same thread. Here is my attempt that honestly looks wrong, so I'd like to know what is the proper strategy for this EventBus creation and propagation:
public enum EventBusHolder {
INSTANCE {
@Override
EventBus get() {
if (null == THREAD_LOCAL_EVENT_BUS.get()) {
THREAD_LOCAL_EVENT_BUS.set(new EventBus());
}
return THREAD_LOCAL_EVENT_BUS.get();
}
};
abstract EventBus get();
transient private static final ThreadLocal<EventBus> THREAD_LOCAL_EVENT_BUS = new ThreadLocal<>();
}