Example usage for org.springframework.amqp.core MessageListener interface-usage

List of usage examples for org.springframework.amqp.core MessageListener interface-usage

Introduction

In this page you can find the example usage for org.springframework.amqp.core MessageListener interface-usage.

Usage

From source file com.opengsn.services.networkmanager.messages.NetworkManagerListener.java

/**
 * Handling connection with other modules through a JMS queue
 * 
 * @author knguyen
 * 
 */

From source file com.opengsn.services.cloudmanager.messages.CloudManagerListener.java

/**
 * Handling connection with other modules through a JMS queue
 * 
 * @author knguyen
 * 
 */

From source file com.opengsn.services.facilitymanager.messages.FacilityManagerListener.java

/**
 * Handling connection with other modules through a JMS queue
 * 
 * @author knguyen
 * 
 */

From source file com.francetelecom.clara.cloud.paas.activation.v1.async.listener.amqp.ErrorMessageListener.java

public class ErrorMessageListener implements MessageListener {

    private TaskHandler<TaskStatus, TaskHandlerCallback<TaskStatus>> taskHandler;

    private static final Logger log = LoggerFactory.getLogger(ErrorMessageListener.class);

From source file com.francetelecom.clara.cloud.paas.activation.v1.async.listener.amqp.ReplyMessageListener.java

public class ReplyMessageListener implements MessageListener {

    private TaskHandler<TaskStatus, TaskHandlerCallback<TaskStatus>> taskHandler;

    private static final Logger log = LoggerFactory.getLogger(ReplyMessageListener.class);

From source file com.francetelecom.clara.cloud.paas.activation.v1.async.listener.amqp.RetryableMessageListener.java

public class RetryableMessageListener implements MessageListener {

    private TaskHandler<TaskStatus, TaskHandlerCallback<TaskStatus>> taskHandler;

    private static final Logger log = LoggerFactory.getLogger(RetryableMessageListener.class);

From source file cn.com.inhand.devicenetworks.ap.mq.rabbitmq.DelivingNoticeConsumer.java

/**
 *
 * @author han
 */
public class DelivingNoticeConsumer implements MessageListener, ChannelAwareMessageListener {

From source file com.francetelecom.clara.cloud.paas.activation.v1.async.listener.amqp.UnexpectedErrorMessageListener.java

public class UnexpectedErrorMessageListener implements MessageListener {

    /**
     * helper that simplifies synchronous amqp access code to 'error' queue
     */
    private AmqpTemplate amqpErrorTemplate;

From source file org.carewebframework.amqp.rabbitmq.GlobalEventDispatcher.java

/**
 * This class is responsible for communicating with the global messaging server (in this case, an
 * AMQP server). It interacts with the local event manager and is responsible for dispatching
 * (publishing) events to be distributing globally to the messaging server and receiving subscribed
 * events from the same and passing them on to the local event dispatcher for local distribution.
 */

From source file cn.com.inhand.devicenetworks.ap.mq.rabbitmq.TaskNotificationConsumer.java

/**
 *
 * @author han
 */
//@Component
public class TaskNotificationConsumer implements MessageListener, ChannelAwareMessageListener {