Examples of autoSaveSetup()


Examples of net.sf.joafip.service.IFilePersistence.autoSaveSetup()

    builder.setPathName(TestConstant.getWinRamDiskRuntimeDir());
    builder.setProxyMode(true);
    final IFilePersistence filePersistence = builder.build();
    filePersistence.setAutoSaveEnabled(true);
    // 0 for immediate saving
    filePersistence.autoSaveSetup(0);
    final IExclusiveDataAccessSession session = filePersistence
        .createExclusiveDataAccessSession();
    session.open();
    final IInstanceFactory instanceFactory = session.getInstanceFactory();
View Full Code Here

Examples of net.sf.joafip.service.IFilePersistence.autoSaveSetup()

    builder.setPathName(TestConstant.getWinRamDiskRuntimeDir());
    builder.setProxyMode(true);
    final IFilePersistence filePersistence = builder.build();
    filePersistence.setAutoSaveEnabled(true);
    // 0 for immediate saving
    filePersistence.autoSaveSetup(0);
    final IExclusiveDataAccessSession session = filePersistence
        .createExclusiveDataAccessSession();
    session.open();
    final IInstanceFactory instanceFactory = session.getInstanceFactory();
View Full Code Here

Examples of net.sf.joafip.service.IFilePersistence.autoSaveSetup()

    builder.setFileCache(16 * 1024/* pageSize */, 8 * 1024/* maxPage */);
    builder.setGarbageManagement(false);
    builder.setCrashSafeMode(false);
    final IFilePersistence filePersistence = builder.build();

    filePersistence.autoSaveSetup(0);// 0 is important for the test
    filePersistence.setAutoSaveEnabled(true);
    filePersistence.maintainInMemorySetup(500);
    filePersistence.setMaintainedInMemoryEnabled(true);
    final IExclusiveDataAccessSession session = filePersistence
        .createExclusiveDataAccessSession();
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.