Example usage for org.springframework.context ApplicationEvent subclass-usage

List of usage examples for org.springframework.context ApplicationEvent subclass-usage

Introduction

In this page you can find the example usage for org.springframework.context ApplicationEvent subclass-usage.

Usage

From source file de.iew.framework.utils.IewApplicationEvent.java

/**
 * Implements a base application event and adds additional functionality for use with spring integration.
 *
 * @author Manuel Schulze <manuel_schulze@i-entwicklung.de>
 * @since 25.03.13 - 16:58
 */

From source file ru.jts_dev.gameserver.time.events.DayNightStateChanged.java

/**
 * @author Java-man
 * @since 12.01.2016
 */
public class DayNightStateChanged extends ApplicationEvent {
    private final boolean nowDay;

From source file com.jhkt.playgroundArena.shared.events.UpdateEvent.java

/**
 * @author Ji Hoon Kim
 */
public final class UpdateEvent extends ApplicationEvent {

    private static final long serialVersionUID = 7557566466132617077L;

From source file org.archive.crawler.event.CrawlURIDispositionEvent.java

public class CrawlURIDispositionEvent extends ApplicationEvent {
    public enum Disposition {
        SUCCEEDED, FAILED, DISREGARDED, DEFERRED_FOR_RETRY
    }

    private static final long serialVersionUID = 1L;

From source file com.epam.ta.reportportal.core.user.event.UpdateUserRoleEvent.java

/**
 * Update User role event for handling situations with already logged-in
 * accounts using tokens.
 * 
 * @author Andrei_Ramanchuk
 *

From source file org.archive.crawler.framework.CheckpointSuccessEvent.java

/**
 * Report success of a Checkpoint (so that it may be reported by the
 * CrawlJOb to the job log). 
 * 
 * @contributor gojomo
 */

From source file org.arrow.runtime.message.event.ConditionApplicationEvent.java

/**
 * {@link ApplicationEvent} instance for conditional events.
 *
 * @author christian.weber
 * @since 1.0.0
 */

From source file org.archive.crawler.event.CrawlStateEvent.java

public class CrawlStateEvent extends ApplicationEvent {
    private static final long serialVersionUID = 1L;
    protected State state;
    protected String message;

    public CrawlStateEvent(Object source, State state, String message) {

From source file net.sourceforge.vulcan.spring.EventBridge.java

class EventBridge extends ApplicationEvent {
    final Event event;

    EventBridge(Event event) {
        super(event.getSource());
        this.event = event;

From source file org.jasig.irclog.events.IrcEvent.java

/**
 * Base class for all IRC events
 * 
 * @author Eric Dalquist <a href="mailto:eric.dalquist@doit.wisc.edu">eric.dalquist@doit.wisc.edu</a>
 * @version $Revision$
 */