Example usage for org.springframework.context.event SimpleApplicationEventMulticaster multicastEvent

List of usage examples for org.springframework.context.event SimpleApplicationEventMulticaster multicastEvent

Introduction

In this page you can find the example usage for org.springframework.context.event SimpleApplicationEventMulticaster multicastEvent.

Prototype

@Override
    public void multicastEvent(ApplicationEvent event) 

Source Link

Usage

From source file:org.springframework.boot.context.logging.LoggingApplicationListenerTests.java

private void multicastEvent(ApplicationListener<?> listener, ApplicationEvent event) {
    SimpleApplicationEventMulticaster multicaster = new SimpleApplicationEventMulticaster();
    multicaster.addApplicationListener(listener);
    multicaster.multicastEvent(event);
}