Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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<>();

}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.