Examples of HeapMultiFileDataManager


Examples of net.sf.joafip.kvstore.service.HeapMultiFileDataManager

      FilePersistenceNotSerializableException,
      FilePersistenceClassNotFoundException,
      FilePersistenceDataCorruptedException,
      FilePersistenceTooBigForSerializationException, RBTException {
    final FilePersistenceBuilder builder = new FilePersistenceBuilder();
    final IHeapDataManager dataManager = new HeapMultiFileDataManager(
        new File("runtime/mmf"));
    builder.setDataManager(dataManager);
    builder.setProxyMode(true);
    builder.setRemoveFiles(true);
    builder.setCrashSafeMode(false);
View Full Code Here

Examples of net.sf.joafip.kvstore.service.HeapMultiFileDataManager

  private final HeapMultiFileDataManager heapMultiFileDataManager;

  public HeapFileCheckerDataManager(final HeapFileSetup setup,
      final File rootDirectoryForMultifile) throws HeapException {
    heapFileDataManager = new HeapFileDataManager(setup, false);
    heapMultiFileDataManager = new HeapMultiFileDataManager(
        rootDirectoryForMultifile);
  }
View Full Code Here

Examples of net.sf.joafip.kvstore.service.HeapMultiFileDataManager

    super(name);
  }

  @Override
  protected void setUp() throws Exception { // NOPMD
    dataManager = new HeapMultiFileDataManager(new File(
        TestConstant.getWinRamDiskRuntimeDir() + "/multifile"));
    super.setUp();
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.