Example usage for javax.jms MessageListener interface-usage

List of usage examples for javax.jms MessageListener interface-usage

Introduction

In this page you can find the example usage for javax.jms MessageListener interface-usage.

Usage

From source file org.jbpm.process.workitem.jms.JMSSignalReceiver.java

public class JMSSignalReceiver implements MessageListener {

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

    @SuppressWarnings({ "unchecked", "rawtypes" })
    @Override

From source file com.inkubator.sms.gateway.service.impl.NotificationUserMessagesListener.java

/**
 *
 * @author deni
 */
public class NotificationUserMessagesListener extends IServiceImpl implements MessageListener {

From source file org.apache.stratos.manager.listener.InstanceStatusListener.java

public class InstanceStatusListener implements MessageListener {

    private static final Log log = LogFactory.getLog(InstanceStatusListener.class);

    @Override
    public void onMessage(Message message) {

From source file org.wso2.carbon.event.input.adaptor.jms.internal.util.JMSMessageListener.java

public class JMSMessageListener implements MessageListener {
    private static final Log log = LogFactory.getLog(JMSMessageListener.class);
    private InputEventAdaptorListener eventAdaptorListener = null;
    private final int tenantId;
    private final String tenantDomain;

From source file org.logicblaze.lingo.jmx.remote.jms.ServerListenerInfo.java

/**
 * @version $Revision: 95 $
 */
class ServerListenerInfo implements NotificationListener, MessageListener {
    private static final Log log = LogFactory.getLog(ServerListenerInfo.class);
    private String id;

From source file com.fusesource.forge.jmstest.executor.BenchmarkConsumer.java

public class BenchmarkConsumer extends AbstractJMSClientComponent implements MessageListener, Releaseable {
    private transient Log log;

    private MessageConsumer messageConsumer;
    private String clientId;

From source file org.logicblaze.lingo.jmx.remote.jms.activemq.ActiveMQServerListenerInfo.java

/**
 * @version $Revision: 95 $
 */
class ActiveMQServerListenerInfo implements NotificationListener, MessageListener {
    private static final Log log = LogFactory.getLog(ActiveMQServerListenerInfo.class);
    private String id;

From source file de.taimos.dvalin.interconnect.core.spring.DaemonMessageListener.java

/**
 * Listen to JMS messages for this daemon.
 */
@ProdComponent("messageListener")
public final class DaemonMessageListener implements MessageListener, ErrorHandler {

From source file org.apache.synapse.transport.jms.JMSMessageReceiver.java

/**
 * This is the actual receiver which listens for and accepts JMS messages, and
 * hands them over to be processed by a worker thread. An instance of this
 * class is created for each JMSConnectionFactory, but all instances may and
 * will share the same worker thread pool held by the JMSListener
 */

From source file dk.netarkivet.common.distribute.Synchronizer.java

/**
 * Converts an asynchronous call to a synchronous call. The method
 * sendAndWaitForOneReply() is a blocking call which responds when a
 * reply is received or returns null on timeout.
 *
 */