Glide
Glide
/
com.bumptech.glide.load.engine.cache
/
DiskCache
Disk
Cache
interface
DiskCache
Content copied to clipboard
An interface for writing to and reading from a disk cache.
Types
Functions
Inheritors
Types
Factory
Link copied to clipboard
interface
Factory
Content copied to clipboard
An interface for lazily creating a disk cache.
Writer
Link copied to clipboard
interface
Writer
Content copied to clipboard
An interface to actually write data to a key in the disk cache.
Functions
clear
Link copied to clipboard
abstract
fun
clear
(
)
Content copied to clipboard
Clear the cache.
delete
Link copied to clipboard
abstract
fun
delete
(
key
:
Key
)
Content copied to clipboard
Remove the key and value from the cache.
get
Link copied to clipboard
abstract
fun
get
(
key
:
Key
)
:
File
Content copied to clipboard
Get the cache for the value at the given key.
put
Link copied to clipboard
abstract
fun
put
(
key
:
Key
,
writer
:
DiskCache.Writer
)
Content copied to clipboard
Write to a key in the cache.
Inheritors
DiskCacheAdapter
Link copied to clipboard
DiskLruCacheWrapper
Link copied to clipboard