Uses of Interface
org.apache.commons.vfs.FilesCache
-
Packages that use FilesCache Package Description org.apache.commons.vfs The public VFS API.org.apache.commons.vfs.cache org.apache.commons.vfs.impl The standard VFS implementation. -
-
Uses of FilesCache in org.apache.commons.vfs
Methods in org.apache.commons.vfs that return FilesCache Modifier and Type Method Description FilesCacheFileSystemManager. getFilesCache()Get the cache used to cache fileobjects. -
Uses of FilesCache in org.apache.commons.vfs.cache
Classes in org.apache.commons.vfs.cache that implement FilesCache Modifier and Type Class Description classAbstractFilesCacheDescriptionclassDefaultFilesCacheAFilesCacheimplementation.
This implementation caches every file for the complete lifetime of the usedFileSystemManager.classLRUFilesCacheThis implementation caches every file usingLRUMap.
The default constructor uses a LRU size of 100 per filesystem.classNullFilesCacheAFilesCacheimplementation.
This implementation never ever caches a single file.classSoftRefFilesCacheThis implementation caches every file as long as it is strongly reachable by the java vm.classWeakRefFilesCacheThis implementation caches every file as long as it is strongly reachable by the java vm. -
Uses of FilesCache in org.apache.commons.vfs.impl
Methods in org.apache.commons.vfs.impl that return FilesCache Modifier and Type Method Description FilesCacheDefaultFileSystemManager. getFilesCache()Returns the filesCache implementation used to cache filesMethods in org.apache.commons.vfs.impl with parameters of type FilesCache Modifier and Type Method Description voidDefaultFileSystemManager. setFilesCache(FilesCache filesCache)Sets the filesCache implementation used to cache files
-