List of usage examples for javax.jms ExceptionListener interface-usage
From source file uk.co.jassoft.jms.listener.JmsExceptionListener.java
/** * * @author Jonny */ @Component public class JmsExceptionListener implements ExceptionListener {
From source file com.adaptris.core.jms.JmsConnectionErrorHandler.java
/** * Standard implementation of ConnectionErrorHandler which implements {@link ExceptionListener}. * * @config jms-connection-error-handler */ @XStreamAlias("jms-connection-error-handler")
From source file org.wso2.carbon.esb.scenario.test.common.jms.ActiveMQJMSClient.java
/** * This Simple JMS client acts as JMS consumer and producer for ActiveMQ */ public class ActiveMQJMSClient implements ExceptionListener { private static final Log log = LogFactory.getLog(ActiveMQJMSClient.class);
From source file org.audit4j.core.AsyncAuditEngine.java
/** * The Class AsyncAuditEngine. * * @author Janith Bandara */ public class AsyncAuditEngine implements ExceptionListener {
From source file org.symplify.runtime.jms.JMSContextImpl.java
public class JMSContextImpl implements ClientContext, ExceptionListener { public JMSContextImpl() { initialize(); }
From source file com.fusesource.forge.jmstest.benchmark.command.transport.JMSCommandTransport.java
public class JMSCommandTransport extends AbstractCommandTransport implements MessageListener, Releaseable, ExceptionListener { private JMSConnectionProvider jmsConnectionProvider; private JMSDestinationProvider jmsDestinationProvider; private String destinationName = "topic:benchmark.command";
From source file edu.psu.citeseerx.messaging.MsgService.java
/**
* Implements a configuration-driven JMS environment for sending or
* receiving messages. Providers and channel resources are kept separate
* in order to manage resources independently by name. Consumer and provider
* channels are also kept in separate namespaces in order to prevent
* confusion over how each channel can be used.
From source file org.apache.qpid.multiconsumer.AMQTest.java
/** * Test AMQ. */ public class AMQTest extends TestCase implements ExceptionListener { private final static String COMPRESSION_PROPNAME = "_MSGAPI_COMP";
From source file org.wso2.andes.systest.TestingBaseCase.java
public class TestingBaseCase extends QpidBrokerTestCase implements ExceptionListener, ConnectionListener { Topic _destination; protected CountDownLatch _disconnectionLatch = new CountDownLatch(1); protected int MAX_QUEUE_MESSAGE_COUNT; protected int MESSAGE_SIZE = DEFAULT_MESSAGE_SIZE;
From source file ConsumerTool.java
/** * A simple tool for consuming messages * * */ public class ConsumerTool extends Thread implements MessageListener, ExceptionListener {