public interface HttpCache extends EngineService
By default HTTP cache stores the resources fetched from the web on a disk or in the memory. Chromium itself decides how to cache the resources for optimal performance.
The memory cache stores and loads the resources to and from the process memory – RAM. It is a fast but non-persistent way.
The disk cache is persistent. The cached resources are stored and loaded to and from the disk. The disk cache is stored in the Cache folder in the User Data directory.
Modifier and Type | Method and Description |
---|---|
void |
clearDiskCache(java.lang.Runnable completionCallback)
Marks all entries in the disk cache for deletion and notifies when it is completed via the
passed callback.
|
void clearDiskCache(java.lang.Runnable completionCallback)
completionCallback
- callback for notification when all entries in the disk cache have
been marked for deletionjava.lang.IllegalStateException
- when the engine is closed