Example usage for org.springframework.context ApplicationListener interface-usage

List of usage examples for org.springframework.context ApplicationListener interface-usage

Introduction

In this page you can find the example usage for org.springframework.context ApplicationListener interface-usage.

Usage

From source file devbury.dewey.core.event.EventListener.java

public interface EventListener<T extends Event> extends ApplicationListener<T> {

    default void onApplicationEvent(T event) {
        onEvent(event);
    }

From source file org.codetrack.command.CommandEventListener.java

/**
 * Define CommandEvent listener
 *
 * @author josecmoj at 23/04/15.
 */
public abstract class CommandEventListener<T extends CommandEvent> implements ApplicationListener {

From source file org.obiba.mica.core.upgrade.UpgradeApplicationListener.java

@Component
public class UpgradeApplicationListener implements ApplicationListener<ContextRefreshedEvent> {

    @Inject
    private UpgradeManager upgradeManager;

From source file net.noday.d4c.core.listener.EventListener.java

/**
 * domain4cat EventListener
 *
 * @author <a href="http://www.noday.net">Noday</a>
 * @version , 2012-10-17
 * @since 

From source file org.trpr.platform.core.spi.event.PlatformEventConsumer.java

/**
 * Interface <code>PlatformEventConsumer</code> is a simple marker consumer interface for processing events. It extends the Spring
 * {@link ApplicationListener} interface. All event consumers must implement this interface.
 * 
 * @see PlatformEventProducer
 * 

From source file com.bbytes.zorba.jobworker.event.IJobEventListener.java

/**
 * The interface for job events listener.
 * 
 * @author Thanneer
 * 
 * @version

From source file org.geoserver.wps.executor.util.DefaultClusterFilePublisherURLMangler.java

/**
 * The Class DefaultClusterFilePublisherURLMangler.
 * 
 * @author "Alessio Fabiani - alessio.fabiani@geo-solutions.it"
 */
public class DefaultClusterFilePublisherURLMangler

From source file com.github.nbyl.xfdcontrol.core.plugins.NotificationPlugin.java

public interface NotificationPlugin extends ApplicationListener<JobStatusChangedEvent> {
}

From source file com.netflix.spinnaker.igor.polling.PollingMonitor.java

public interface PollingMonitor extends ApplicationListener<RemoteStatusChangedEvent> {
    void onApplicationEvent(RemoteStatusChangedEvent event);

    String getName();

    boolean isInService();

From source file com.netflix.spinnaker.echo.pubsub.PollingMonitor.java

/**
 * An interface for monitors which rely on polling.
 */
public interface PollingMonitor extends ApplicationListener<ContextRefreshedEvent> {
    void onApplicationEvent(ContextRefreshedEvent event);