Package org.vaadin.spring.events.internal

Examples of org.vaadin.spring.events.internal.ScopedEventBus


    }

    @Bean
    @EventBusScope(EventScope.APPLICATION)
    EventBus applicationEventBus() {
        return new ScopedEventBus(EventScope.APPLICATION);
    }
View Full Code Here


    @Bean
    @Scope(value = VaadinSessionScope.VAADIN_SESSION_SCOPE_NAME, proxyMode = ScopedProxyMode.NO)
    @EventBusScope(EventScope.SESSION)
    EventBus sessionEventBus() {
        return new ScopedEventBus(EventScope.SESSION, applicationEventBus());
    }
View Full Code Here

    @Bean
    @Scope(value = VaadinUIScope.VAADIN_UI_SCOPE_NAME, proxyMode = ScopedProxyMode.NO)
    @Primary
    @EventBusScope(EventScope.UI)
    EventBus uiEventBus() {
        return new ScopedEventBus(EventScope.UI, sessionEventBus());
    }
View Full Code Here

TOP

Related Classes of org.vaadin.spring.events.internal.ScopedEventBus

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.