Package org.jcoredb.fs.impl.multithead

Examples of org.jcoredb.fs.impl.multithead.SegmentIndex


   * @return
   */
  private List<Slice> sliceBySegment(Block[] blocks)
  {
    //Sort the blocks by their segment id
    SegmentIndex idx = new SegmentIndex();
   
    for (Block b : blocks)
    {
      idx.put(b);
    }
   
    return idx.getSlices();
  }
View Full Code Here

TOP

Related Classes of org.jcoredb.fs.impl.multithead.SegmentIndex

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.