bitronix.tm.resource.jms.MessageConsumerWrapper Maven / Gradle / Ivy
package bitronix.tm.resource.jms;
import bitronix.tm.resource.common.TransactionContextHelper;
import javax.jms.JMSException;
import javax.jms.Message;
import javax.jms.MessageConsumer;
import javax.jms.MessageListener;
import javax.transaction.RollbackException;
import javax.transaction.SystemException;
/**
* {@link MessageConsumer} wrapper that adds XA enlistment semantics.
*
*
* @author lorban
*/
public class MessageConsumerWrapper implements MessageConsumer {
private MessageConsumer messageConsumer;
protected DualSessionWrapper session;
private PoolingConnectionFactory poolingConnectionFactory;
public MessageConsumerWrapper(MessageConsumer messageConsumer, DualSessionWrapper session, PoolingConnectionFactory poolingConnectionFactory) {
this.messageConsumer = messageConsumer;
this.session = session;
this.poolingConnectionFactory = poolingConnectionFactory;
}
public MessageConsumer getMessageConsumer() {
return messageConsumer;
}
/**
* Enlist this session into the current transaction if automaticEnlistingEnabled = true for this resource.
* If no transaction is running then this method does nothing.
* @throws javax.jms.JMSException
*/
protected void enlistResource() throws JMSException {
if (poolingConnectionFactory.getAutomaticEnlistingEnabled()) {
try {
TransactionContextHelper.enlistInCurrentTransaction(session);
} catch (SystemException ex) {
throw (JMSException) new JMSException("error enlisting " + this).initCause(ex);
} catch (RollbackException ex) {
throw (JMSException) new JMSException("error enlisting " + this).initCause(ex);
}
} // if getAutomaticEnlistingEnabled
}
public String toString() {
return "a MessageConsumerWrapper of " + session;
}
/* MessageProducer with special XA semantics implementation */
public Message receive() throws JMSException {
enlistResource();
return getMessageConsumer().receive();
}
public Message receive(long timeout) throws JMSException {
enlistResource();
return getMessageConsumer().receive(timeout);
}
public Message receiveNoWait() throws JMSException {
enlistResource();
return getMessageConsumer().receiveNoWait();
}
public void close() throws JMSException {
// do nothing as the close is handled by the session handle
}
/* dumb wrapping of MessageProducer methods */
public String getMessageSelector() throws JMSException {
return getMessageConsumer().getMessageSelector();
}
public MessageListener getMessageListener() throws JMSException {
return getMessageConsumer().getMessageListener();
}
public void setMessageListener(MessageListener listener) throws JMSException {
getMessageConsumer().setMessageListener(listener);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy