/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.camel.component.sjms.tx; import javax.jms.Session; import org.apache.camel.Exchange; import org.apache.camel.component.sjms.TransactionCommitStrategy; import org.apache.camel.support.SynchronizationAdapter; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * SessionTransactionSynchronization is called at the completion of each {@link org.apache.camel.Exchange}. * <p/> * The commit or rollback on the {@link Session} must be performed from the same thread that consumed the message. */ public class SessionTransactionSynchronization extends SynchronizationAdapter { private static final Logger LOG = LoggerFactory.getLogger(SessionTransactionSynchronization.class); private final Session session; private final TransactionCommitStrategy commitStrategy; public SessionTransactionSynchronization(Session session, TransactionCommitStrategy commitStrategy) { this.session = session; if (commitStrategy == null) { this.commitStrategy = new DefaultTransactionCommitStrategy(); } else { this.commitStrategy = commitStrategy; } } @Override public void onFailure(Exchange exchange) { try { if (commitStrategy.rollback(exchange)) { LOG.debug("Processing failure of Exchange id: {}", exchange.getExchangeId()); if (session != null && session.getTransacted()) { session.rollback(); } } } catch (Exception e) { LOG.warn("Failed to rollback the session: {}", e.getMessage()); } } @Override public void onComplete(Exchange exchange) { try { if (commitStrategy.commit(exchange)) { LOG.debug("Processing completion of Exchange id: {}", exchange.getExchangeId()); if (session != null && session.getTransacted()) { session.commit(); } } } catch (Exception e) { LOG.warn("Failed to commit the session: {}", e.getMessage()); exchange.setException(e); } } @Override public boolean allowHandover() { // must not handover as we should be synchronous return false; } }