All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.camel.component.sjms.tx.SessionTransactionSynchronization Maven / Gradle / Ivy

There is a newer version: 4.9.0
Show newest version
/**
 * 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.spi.Synchronization;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * SessionTransactionSynchronization is called at the completion of each {@link org.apache.camel.Exhcnage}.
 */
public class SessionTransactionSynchronization implements Synchronization {
    private Logger log = LoggerFactory.getLogger(getClass());
    private 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;
        }
    }

    /**
     * @param exchange
     * @see org.apache.camel.spi.Synchronization#onFailure(org.apache.camel.Exchange)
     */
    @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());
        }
    }

    /**
     * @param exchange
     * @see org.apache.camel.spi.Synchronization#onComplete(org.apache.camel.Exchange
     *)
     */
    @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);
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy