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

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

Introduction

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

Prototype

@Override
    public void addApplicationListener(ApplicationListener<?> listener) 

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);//  ww w. j a  v a 2 s . co m
}