Package net.sf.joafip.store.entity

Examples of net.sf.joafip.store.entity.StoreProperties


    }
  }

  private void run() throws HeapException {

    final StoreProperties storeProperties = new StoreProperties();

    final EnumFileAccessMode fileAccessMode = EnumFileAccessMode.NIO_RANDOM_FILE_ACCESS;

    final String toUseDataFileName = AbstractStoreDelegatingToDataManager.STORE_DATA;
    final String pathName = AbstractPerfService.RUNTIME_DIR;
    final File dataFile = new File(pathName, toUseDataFileName);

    final boolean useCacheMode = true;
    final boolean crashSafeMode = false;

    final boolean manageNodeIndex = false;

    final boolean deleteRenaming = storeProperties.isDeleteRenaming();
    final boolean clearResizeFile = storeProperties.isClearResizeFile();
    final int maxFileOperationRetry = storeProperties
        .getMaxFileOperationRetry();
    final int fileOperationRetryMsDelay = storeProperties
        .getFileOperationRetryMsDelay();

    final File openFileTraceFile = new File(pathName,
        AbstractStoreDelegatingToDataManager.TRACE_FILE);
View Full Code Here

TOP

Related Classes of net.sf.joafip.store.entity.StoreProperties

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.