Package edu.brown.hstore.txns

Examples of edu.brown.hstore.txns.LocalTransaction


            boolean found = false;
            for (AbstractTransaction ts : siteDebug.getInflightTransactions()) {
                if ((ts instanceof LocalTransaction) == false ||
                    ts.getBasePartition() != partition ||
                    ts.isPredictSinglePartition()) continue;
                LocalTransaction localTxn = (LocalTransaction)ts;
                if (depTrackerDbg.hasTransactionState(localTxn)) {
                    inner.put(localTxn.toString(), depTrackerDbg.debugMap(localTxn));
                } else {
                    inner.put(localTxn.toString(), "<MISSING>");
                }
                found = true;
            }
            if (found == false) inner.put("<NONE>", null);
            m.put(String.format("Partition %02d", partition), inner);
View Full Code Here

TOP

Related Classes of edu.brown.hstore.txns.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.