Example usage for javax.jms ExceptionListener interface-usage

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

Introduction

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

Usage

From source file org.apache.apex.malhar.lib.io.jms.AbstractJMSInputOperator.java

/**
 * This is the base implementation of a JMS input operator.<br/>
 * Subclasses must implement the method that converts JMS messages into tuples for emission.
 * <p/>
 * The operator acts as a listener for JMS messages. When there is a message available in the message bus,
 * {@link #onMessage(Message)} is called which buffers the message into a holding buffer. This is asynchronous.<br/>

From source file org.openadaptor.auxil.connector.jms.JMSReadConnector.java

/**
 * Read Connector class that implements listening to JMS.
 * <p>
 * Manages a single JMS Session and MessageConsumer.
 * <p>
 * Delegates to <code>JMSConnector</code> to get the actual Connection with JMS.

From source file org.genemania.broker.Worker.java

public class Worker implements MessageListener, ExceptionListener {

    // __[static]______________________________________________________________
    private static Logger LOG = Logger.getLogger(Worker.class);

    // __[attributes]__________________________________________________________

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

/**
 * Handles the communication with a JMS broker. Note on Thread-safety: the
 * methods and fields of JMSConnection are not accessed by multiple threads
 * (though JMSConnection itself creates threads). Thus no synchronization is
 * needed on methods and fields of JMSConnection. A shutdown hook is also added,
 * which closes the connection. Class JMSConnection is now also a

From source file org.marketcetera.client.ClientImpl.java

/**
 * The implementation of Client that connects to the server.
 *
 * @author anshul@marketcetera.com
 * @version $Id$
 * @since 1.0.0