Package net.sf.joafip.kvstore.record.service

Examples of net.sf.joafip.kvstore.record.service.IHeapElementManager


    }
  }

  private void checkIntegrity(final HeapFileDataManager heapFileDataManager)
      throws HeapException {
    final IHeapElementManager heapElementManager = heapFileDataManager
        .getHeapElementManager();

    idNodeTree = heapFileDataManager.getIdNodeTree();
    freeNodeTree = heapFileDataManager.getFreeNodeTree();
View Full Code Here


  private final BtreePlusElementMgr btreePlusElementMgr;

  public BtreePlusDataManager(final HeapFileSetup setup) throws HeapException {
    super();
    final IHeapElementManager heapElementManager = HeapElementManagerFactory
        .create(setup);
    btreePlusElementMgr = new BtreePlusElementMgr(heapElementManager);
  }
View Full Code Here

TOP

Related Classes of net.sf.joafip.kvstore.record.service.IHeapElementManager

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.