/* * Copyright (c) 2017, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. * * WSO2 Inc. 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.wso2.carbon.transport.jms.callback; import org.wso2.carbon.messaging.CarbonMessage; import org.wso2.carbon.transport.jms.exception.JMSConnectorException; import org.wso2.carbon.transport.jms.utils.JMSConstants; import javax.jms.Session; /** * Call back used for transacted sessions. To commit or rollback the sessions. */ public class TransactedSessionCallback extends JMSCallback { /** * Creates a call back for the transacted session. * * @param session JMS Session connected with this callback * @param caller {@link Object} The caller object which needs to wait for the jms acknowledgement to be completed */ public TransactedSessionCallback(Session session, Object caller) { super(session, caller); } /** * Commits the jms session or rollback if there was an error then notify the caller about operation completion. * * @param carbonMessage The received carbon message */ @Override public void done(CarbonMessage carbonMessage) { try { if (carbonMessage.getProperty(JMSConstants.JMS_MESSAGE_DELIVERY_STATUS) .equals(JMSConstants.JMS_MESSAGE_DELIVERY_SUCCESS)) { commitSession(); } else { rollbackSession(); } } catch (JMSConnectorException e) { throw new RuntimeException("Error completing the transaction callback operation", e); } finally { markAsComplete(); } } }