Uses of Interface
com.android.volley.Cache

Packages that use Cache
com.android.volley   
com.android.volley.toolbox   
 

Uses of Cache in com.android.volley
 

Methods in com.android.volley that return Cache
 Cache RequestQueue.getCache()
          Gets the Cache instance being used.
 

Constructors in com.android.volley with parameters of type Cache
CacheDispatcher(BlockingQueue<Request> cacheQueue, BlockingQueue<Request> networkQueue, Cache cache, ResponseDelivery delivery)
          Creates a new cache triage dispatcher thread.
NetworkDispatcher(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.
 

Uses of Cache in com.android.volley.toolbox
 

Classes in com.android.volley.toolbox that implement Cache
 class DiskBasedCache
          Cache implementation that caches files directly onto the hard disk in the specified directory.
 class NoCache
          A cache that doesn't.
 

Constructors in com.android.volley.toolbox with parameters of type Cache
ClearCacheRequest(Cache cache, Runnable callback)
          Creates a synthetic request for clearing the cache.