jmsclientacknowledgetransaction.java
来自「提供ESB 应用mule源代码 提供ESB 应用mule源代码」· Java 代码 · 共 120 行
JAVA
120 行
/* * $Id: JmsClientAcknowledgeTransaction.java 10489 2008-01-23 17:53:38Z dfeist $ * -------------------------------------------------------------------------------------- * Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com * * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. */package org.mule.transport.jms;import org.mule.api.transaction.TransactionException;import org.mule.config.i18n.CoreMessages;import org.mule.transaction.AbstractSingleResourceTransaction;import org.mule.transaction.IllegalTransactionStateException;import org.mule.transport.jms.i18n.JmsMessages;import javax.jms.Connection;import javax.jms.JMSException;import javax.jms.Message;import javax.jms.Session;/** * <code>JmsClientAcknowledgeTransaction</code> is a transaction implementation of * performing a message acknowledgement. There is no notion of rollback with client * acknowledgement, but this transaction can be useful for controlling how messages * are consumed from a destination. */public class JmsClientAcknowledgeTransaction extends AbstractSingleResourceTransaction{ private volatile Message message; public void setMessage(Message message) { this.message = message; } /* * (non-Javadoc) * * @see org.mule.transaction.AbstractSingleResourceTransaction#doBegin() */ protected void doBegin() throws TransactionException { // nothing to do } /* * (non-Javadoc) * * @see org.mule.transaction.AbstractSingleResourceTransaction#doCommit() */ protected void doCommit() throws TransactionException { try { if (message == null) { throw new IllegalTransactionStateException( JmsMessages.noMessageBoundForAck()); } message.acknowledge(); } catch (JMSException e) { throw new IllegalTransactionStateException(CoreMessages.transactionCommitFailed(), e); } } /* * (non-Javadoc) * * @see org.mule.transaction.AbstractSingleResourceTransaction#doRollback() */ protected void doRollback() throws TransactionException { // If a message has been bound, rollback is forbidden if (message != null) { throw new UnsupportedOperationException("Jms Client Acknowledge doesn't support rollback"); } } /* * (non-Javadoc) * * @see org.mule.api.Transaction#bindResource(java.lang.Object, * java.lang.Object) */ public void bindResource(Object key, Object resource) throws TransactionException { if (key instanceof Message) { this.message = (Message)key; return; } if (!(key instanceof Connection) || !(resource instanceof Session)) { throw new IllegalTransactionStateException( CoreMessages.transactionCanOnlyBindToResources("javax.jms.Connection/javax.jms.Session")); } Session session = (Session)resource; try { if (session.getTransacted()) { throw new IllegalTransactionStateException(JmsMessages.sessionShouldNotBeTransacted()); } } catch (JMSException e) { throw new IllegalTransactionStateException(CoreMessages.transactionCannotReadState(), e); } super.bindResource(key, resource); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?