|
||||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
java.lang.Objectcom.android.volley.toolbox.DiskBasedCache
public class DiskBasedCache
Cache implementation that caches files directly onto the hard disk in the specified directory. The default disk usage size is 5MB, but is configurable.
入れ子のクラスの概要 |
---|
インタフェース com.android.volley.Cache から継承された入れ子のクラス/インタフェース |
---|
Cache.Entry |
コンストラクタの概要 | |
---|---|
DiskBasedCache(java.io.File rootDirectory)
Constructs an instance of the DiskBasedCache at the specified directory using the default maximum cache size of 5MB. |
|
DiskBasedCache(java.io.File rootDirectory,
int maxCacheSizeInBytes)
Constructs an instance of the DiskBasedCache at the specified directory. |
メソッドの概要 | |
---|---|
void |
clear()
Clears the cache. |
Cache.Entry |
get(java.lang.String key)
Returns the cache entry with the specified key if it exists, null otherwise. |
java.io.File |
getFileForKey(java.lang.String key)
Returns a file object for the given cache key. |
void |
initialize()
Initializes the DiskBasedCache by scanning for all files currently in the specified root directory. |
void |
invalidate(java.lang.String key,
boolean fullExpire)
Invalidates an entry in the cache. |
void |
put(java.lang.String key,
Cache.Entry entry)
Puts the entry with the specified key into the cache. |
void |
remove(java.lang.String key)
Removes the specified key from the cache if it exists. |
クラス java.lang.Object から継承されたメソッド |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
コンストラクタの詳細 |
---|
public DiskBasedCache(java.io.File rootDirectory, int maxCacheSizeInBytes)
rootDirectory
- The root directory of the cache.maxCacheSizeInBytes
- The maximum size of the cache in bytes.public DiskBasedCache(java.io.File rootDirectory)
rootDirectory
- The root directory of the cache.メソッドの詳細 |
---|
public void clear()
Cache
内の clear
public Cache.Entry get(java.lang.String key)
Cache
内の get
key
- Cache key
Cache.Entry
or null in the event of a cache misspublic void initialize()
Cache
内の initialize
public void invalidate(java.lang.String key, boolean fullExpire)
Cache
内の invalidate
key
- Cache keyfullExpire
- True to fully expire the entry, false to soft expirepublic void put(java.lang.String key, Cache.Entry entry)
Cache
内の put
key
- Cache keyentry
- Data to store and metadata for cache coherency, TTL, etc.public void remove(java.lang.String key)
Cache
内の remove
key
- Cache keypublic java.io.File getFileForKey(java.lang.String key)
|
||||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |