Package tachyon.worker

Examples of tachyon.worker.SpaceCounter


  StorageDir(long storageDirId, String dirPath, long capacityBytes, String dataFolder,
      String userTempFolder, Object conf) {
    mDirPath = new TachyonURI(dirPath);
    mConf = conf;
    mFs = UnderFileSystem.get(dirPath, conf);
    mSpaceCounter = new SpaceCounter(capacityBytes);
    mStorageDirId = storageDirId;
    mDataPath = mDirPath.join(dataFolder);
    mUserTempPath = mDirPath.join(userTempFolder);
  }
View Full Code Here

TOP

Related Classes of tachyon.worker.SpaceCounter

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.