インタフェース
com.android.volley.Cache の使用

Cache を使用しているパッケージ
com.android.volley   
com.android.volley.toolbox   
 

com.android.volley での Cache の使用
 

Cache を返す com.android.volley のメソッド
 Cache RequestQueue.getCache()
          Gets the Cache instance being used.
 

Cache 型のパラメータを持つ com.android.volley のコンストラクタ
CacheDispatcher(java.util.concurrent.BlockingQueue<Request> cacheQueue, java.util.concurrent.BlockingQueue<Request> networkQueue, Cache cache, ResponseDelivery delivery)
          Creates a new cache triage dispatcher thread.
NetworkDispatcher(java.util.concurrent.BlockingQueue<Request> queue, Network network, Cache cache, ResponseDelivery delivery)
          Creates a new network dispatcher thread.
RequestQueue(Cache cache, Network network)
          Creates the worker pool.
RequestQueue(Cache cache, Network network, int threadPoolSize)
          Creates the worker pool.
RequestQueue(Cache cache, Network network, int threadPoolSize, ResponseDelivery delivery)
          Creates the worker pool.
 

com.android.volley.toolbox での Cache の使用
 

Cache を実装している com.android.volley.toolbox のクラス
 class DiskBasedCache
          Cache implementation that caches files directly onto the hard disk in the specified directory.
 class NoCache
          A cache that doesn't.
 

Cache 型のパラメータを持つ com.android.volley.toolbox のコンストラクタ
ClearCacheRequest(Cache cache, java.lang.Runnable callback)
          Creates a synthetic request for clearing the cache.