Package edu.brown.hstore.txns.AbstractTransaction

Examples of edu.brown.hstore.txns.AbstractTransaction.RoundState


       
        final ReentrantLock txnLock = ts.getTransactionLock();
        final int base_partition = ts.getBasePartition();
        final int partition = key.getFirst().intValue();
        final int dependency_id = key.getSecond().intValue();
        final RoundState roundState = ts.getCurrentRoundState(base_partition);
        final boolean singlePartitioned = ts.isPredictSinglePartition();
       
        assert(roundState == RoundState.INITIALIZED || roundState == RoundState.STARTED) :
            String.format("Invalid round state %s for %s at partition %d",
                          roundState, ts, base_partition);
View Full Code Here

TOP

Related Classes of edu.brown.hstore.txns.AbstractTransaction.RoundState

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.