Package com.caucho.server.cache

Examples of com.caucho.server.cache.TempFileManager


  public TempFileManager getTempFileManager()
  {
    if (_tempFileManager == null) {
      Path path = RootDirectorySystem.getCurrent().getDataDirectory();

      _tempFileManager = new TempFileManager(path);
    }

    return _tempFileManager;
  }
View Full Code Here


  public TempFileManager getTempFileManager()
  {
    if (_tempFileManager == null) {
      Path path = getResinDataDirectory();

      _tempFileManager = new TempFileManager(path);
    }

    return _tempFileManager;
  }
View Full Code Here

TOP

Related Classes of com.caucho.server.cache.TempFileManager

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.