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

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

Introduction

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

Usage

From source file edu.teilar.jcrop.service.event.KObjectBuilderService.java

/**
 * Event handling in the ApplicationContext is provided through the ApplicationEvent 
 * class and ApplicationListener interface. If a bean that implements the 
 * ApplicationListener interface is deployed into the context, every time an 
 * ApplicationEvent gets published to the ApplicationContext, 
 * that bean is notified. 

From source file com.bbytes.zorba.jobworker.event.impl.JobEventPublisherImpl.java

/**
 * Process job request and publish the job events so that registered listeners
 * can receive the events
 * 
 * @author Thanneer
 * 

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

/**
 * This class is CommandEvent publisher service
 *
 * @author josecmoj at 22/04/15.
 */
@Component

From source file kr.okplace.job.support.StepExecutionApplicationEventAdvice.java

/**
 * Wraps calls for methods taking {@link StepExecution} as an argument and
 * publishes notifications in the form of {@link ApplicationEvent}.
 * 
 * @author Dave Syer
 */

From source file com.jhkt.playgroundArena.shared.events.publishers.UpdatePublisher.java

/**
 * One important thing to keep in mind when working with Spring event handling is that it is single-threaded.
 * 
 * @author Ji Hoon Kim
 */
public final class UpdatePublisher implements ApplicationEventPublisherAware {

From source file org.zenoss.zep.impl.RawEventQueueListener.java

public class RawEventQueueListener extends AbstractQueueListener
        implements ApplicationListener<EventIndexQueueSizeEvent>, ApplicationEventPublisherAware {

    private static final Logger logger = LoggerFactory.getLogger(RawEventQueueListener.class);

    private int prefetchCount = 100;

From source file org.springmodules.validation.util.context.ContextAware.java

/**
 * @author Uri Boness
 */
public interface ContextAware extends ApplicationContextAware, BeanFactoryAware, ResourceLoaderAware,
        MessageSourceAware, ServletContextAware, ApplicationEventPublisherAware {

From source file com.aol.advertising.qiao.emitter.IDataEmitter.java

/**
 * An interface for a data emitter.
 */
public interface IDataEmitter extends ApplicationEventPublisherAware, IStatsCollectable, ISuspendable {
    public void init() throws Exception;

From source file org.cloudfoundry.identity.uaa.authentication.event.BadCredentialsListener.java

/**
 * Spring {@code ApplicationListener} which picks up the listens for Spring Security events and relays them.
 * 
 * @author Dave Syer
 */
public class BadCredentialsListener

From source file org.zenoss.zep.index.impl.IndexedDetailsConfigurationImpl.java

/**
 * Used to maintain the current configuration for the indexed event details.
 */
public class IndexedDetailsConfigurationImpl implements IndexedDetailsConfiguration,
        ApplicationListener<IndexDetailsUpdatedEvent>, ApplicationEventPublisherAware {