bitronix.tm.resource.jms.JmsConnectionHandle Maven / Gradle / Ivy
/*
* Bitronix Transaction Manager
*
* Copyright (c) 2010, Bitronix Software.
*
* This copyrighted material is made available to anyone wishing to use, modify,
* copy, or redistribute it subject to the terms and conditions of the GNU
* Lesser General Public License, as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this distribution; if not, write to:
* Free Software Foundation, Inc.
* 51 Franklin Street, Fifth Floor
* Boston, MA 02110-1301 USA
*/
package bitronix.tm.resource.jms;
import javax.jms.Connection;
import javax.jms.ConnectionConsumer;
import javax.jms.ConnectionMetaData;
import javax.jms.Destination;
import javax.jms.ExceptionListener;
import javax.jms.JMSException;
import javax.jms.ServerSessionPool;
import javax.jms.Session;
import javax.jms.Topic;
import javax.jms.XAConnection;
/**
* Disposable Connection handle.
*
* @author lorban
*/
public class JmsConnectionHandle implements Connection {
private final XAConnection xaConnection;
private final JmsPooledConnection pooledConnection;
private volatile boolean closed = false;
public JmsConnectionHandle(JmsPooledConnection pooledConnection, XAConnection xaConnection) {
this.pooledConnection = pooledConnection;
this.xaConnection = xaConnection;
}
public XAConnection getXAConnection() throws JMSException {
if (xaConnection == null)
throw new JMSException("XA connection handle has been closed");
return xaConnection;
}
public JmsPooledConnection getPooledConnection() {
return pooledConnection;
}
public Session createSession(boolean transacted, int acknowledgeMode) throws JMSException {
return pooledConnection.createSession(transacted, acknowledgeMode);
}
public void close() throws JMSException {
if (closed)
return;
closed = true;
pooledConnection.release();
}
public String toString() {
return "a JmsConnectionHandle of " + pooledConnection;
}
/* Connection implementation */
public String getClientID() throws JMSException {
return getXAConnection().getClientID();
}
public void setClientID(String jndiName) throws JMSException {
getXAConnection().setClientID(jndiName);
}
public ConnectionMetaData getMetaData() throws JMSException {
return getXAConnection().getMetaData();
}
public ExceptionListener getExceptionListener() throws JMSException {
return getXAConnection().getExceptionListener();
}
public void setExceptionListener(ExceptionListener listener) throws JMSException {
getXAConnection().setExceptionListener(listener);
}
public void start() throws JMSException {
getXAConnection().start();
}
public void stop() throws JMSException {
getXAConnection().stop();
}
public ConnectionConsumer createConnectionConsumer(Destination destination, String messageSelector, ServerSessionPool sessionPool, int maxMessages) throws JMSException {
return getXAConnection().createConnectionConsumer(destination, messageSelector, sessionPool, maxMessages);
}
public ConnectionConsumer createDurableConnectionConsumer(Topic topic, String subscriptionName, String messageSelector, ServerSessionPool sessionPool, int maxMessages) throws JMSException {
return getXAConnection().createDurableConnectionConsumer(topic, subscriptionName, messageSelector, sessionPool, maxMessages);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy