Package com.taobao.metamorphosis.server.transaction

Examples of com.taobao.metamorphosis.server.transaction.LocalTransaction


            final Map<TransactionId, Transaction> transactionMap = context.getTransactions();
            transaction = transactionMap.get(xid);
            if (transaction != null) {
                return;
            }
            transaction = new LocalTransaction(this.transactionStore, (LocalTransactionId) xid, context);
            transactionMap.put(xid, transaction);
        }
        if (transaction != null) {
            // ��������ʱ
            this.setTxTimeout(context, transaction, seconds);
View Full Code Here

TOP

Related Classes of com.taobao.metamorphosis.server.transaction.LocalTransaction

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.