Package dovetaildb.bagindex

Examples of dovetaildb.bagindex.Range


        new ArrayBytes(revNumBytes));
  }
 
  public long getRevForTxn(String bag, long txnIdthrows TxnNotFoundException {
    long mapRevNum = map.getCurrentRevNum();
    Range range = new Range(ArrayBytes.EMPTY_BYTES, null, null, true, true);
    range.setBoundsAndExtractPrefix(
        termForTxnBag(bag, 0),
        termForTxnBag(bag, txnId));
    QueryNode query = map.getRange(range, mapRevNum);
    long revNum = 0;
    if (query != null) {
View Full Code Here

TOP

Related Classes of dovetaildb.bagindex.Range

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.