Example usage for org.springframework.jms.listener SessionAwareMessageListener interface-usage

List of usage examples for org.springframework.jms.listener SessionAwareMessageListener interface-usage

Introduction

In this page you can find the example usage for org.springframework.jms.listener SessionAwareMessageListener interface-usage.

Usage

From source file it.geosolutions.geoserver.jms.client.JMSQueueListener.java

/**
 * JMS Client (Consumer)
 * 
 * Class which leverages on commons classes to define a Topic consumer handling incoming messages using runtime loaded SPI to instantiate needed
 * handlers.
 * 

From source file org.springframework.integration.jms.ChannelPublishingJmsMessageListener.java

/**
 * JMS MessageListener that converts a JMS Message into a Spring Integration
 * Message and sends that Message to a channel. If the 'expectReply' value is
 * <code>true</code>, it will also wait for a Spring Integration reply Message
 * and convert that into a JMS reply.
 * 

From source file nl.nn.adapterframework.unmanaged.SpringJmsConnector.java

/**
 * Configure a Spring JMS Container from a {@link nl.nn.adapterframework.jms.PushingJmsListener}.
 * 
 * <p>
 * This implementation expects to receive an instance of
 * org.springframework.jms.listener.DefaultMessageListenerContainer

From source file com.mothsoft.alexis.engine.textual.ParseResponseMessageListener.java

public class ParseResponseMessageListener implements SessionAwareMessageListener<TextMessage> {

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

    private static final String DOCUMENT_ID = "DOCUMENT_ID";

From source file org.springframework.jms.listener.adapter.MessageListenerAdapter.java

/**
 * Message listener adapter that delegates the handling of messages to target
 * listener methods via reflection, with flexible message type conversion.
 * Allows listener methods to operate on message content types, completely
 * independent from the JMS API.
 *

From source file org.springframework.jms.listener.adapter.AbstractAdaptableMessageListener.java

/**
 * An abstract JMS {@link MessageListener} adapter providing the necessary
 * infrastructure to extract the payload of a JMS {@link Message}.
 *
 * @author Juergen Hoeller
 * @author Stephane Nicoll