Interface DiskCache.Factory
-
- All Known Implementing Classes:
DiskCacheAdapter.Factory,DiskLruCacheFactory,ExternalCacheDiskCacheFactory,ExternalPreferredCacheDiskCacheFactory,InternalCacheDiskCacheFactory
- Enclosing interface:
- DiskCache
public static interface DiskCache.FactoryAn interface for lazily creating a disk cache.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringDEFAULT_DISK_CACHE_DIRstatic intDEFAULT_DISK_CACHE_SIZE250 MB of cache.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DiskCachebuild()Returns a new disk cache, ornullif no disk cache could be created.
-
-
-
Field Detail
-
DEFAULT_DISK_CACHE_SIZE
static final int DEFAULT_DISK_CACHE_SIZE
250 MB of cache.- See Also:
- Constant Field Values
-
DEFAULT_DISK_CACHE_DIR
static final java.lang.String DEFAULT_DISK_CACHE_DIR
- See Also:
- Constant Field Values
-
-
Method Detail
-
build
@Nullable DiskCache build()
Returns a new disk cache, ornullif no disk cache could be created.
-
-