Uses of Class
com.octo.android.robospice.persistence.exception.CacheLoadingException

Packages that use CacheLoadingException
com.octo.android.robospice This library provides aims to provide a robust framework for executing asynchronous network requests in android. 
com.octo.android.robospice.command   
com.octo.android.robospice.persistence   
com.octo.android.robospice.persistence.binary   
com.octo.android.robospice.persistence.file   
com.octo.android.robospice.persistence.googlehttpclient.json   
com.octo.android.robospice.persistence.memory   
com.octo.android.robospice.persistence.ormlite   
com.octo.android.robospice.persistence.retrofit   
com.octo.android.robospice.persistence.springandroid   
com.octo.android.robospice.persistence.springandroid.json.jackson   
com.octo.android.robospice.persistence.springandroid.json.jackson2   
com.octo.android.robospice.persistence.springandroid.xml   
com.octo.android.robospice.persistence.string   
 

Uses of CacheLoadingException in com.octo.android.robospice
 

Methods in com.octo.android.robospice that throw CacheLoadingException
<T> Future<List<T>>
SpiceManager.getAllDataFromCache(Class<T> clazz)
           
<T> Future<T>
SpiceManager.getDataFromCache(Class<T> clazz, Object cacheKey)
          Get some data previously saved in cache with key requestCacheKey.
<T> T
SpiceService.getDataFromCache(Class<T> clazz, Object cacheKey)
           
 Date SpiceService.getDateOfDataInCache(Class<?> clazz, Object cacheKey)
           
<T> List<T>
SpiceService.loadAllDataFromCache(Class<T> clazz)
           
 

Uses of CacheLoadingException in com.octo.android.robospice.command
 

Methods in com.octo.android.robospice.command that throw CacheLoadingException
protected  List<Object> GetAllCacheKeysCommand.executeWhenBound(SpiceService spiceService)
           
protected  List<T> GetAllDataFromCacheCommand.executeWhenBound(SpiceService spiceService)
           
protected  T GetDataFromCacheCommand.executeWhenBound(SpiceService spiceService)
           
 

Uses of CacheLoadingException in com.octo.android.robospice.persistence
 

Methods in com.octo.android.robospice.persistence that throw CacheLoadingException
abstract  long ObjectPersister.getCreationDateInCache(Object cacheKey)
          Return the creation date of creation of cache. entry for a given cacheKey.
 Date CacheManager.getDateOfDataInCache(Class<?> clazz, Object cacheKey)
          The date at which given data has been stored last in cache.
 Date ICacheManager.getDateOfDataInCache(Class<?> clazz, Object cacheKey)
          Deprecated. The date at which given data has been stored last in cache.
abstract  List<T> ObjectPersister.loadAllDataFromCache()
           
<T> List<T>
CacheManager.loadAllDataFromCache(Class<T> clazz)
          Loads all data stored in cache for a given class.
<T> List<T>
ICacheManager.loadAllDataFromCache(Class<T> clazz)
          Deprecated. Loads all data stored in cache for a given class.
<T> T
CacheManager.loadDataFromCache(Class<T> clazz, Object cacheKey, long maxTimeInCacheBeforeExpiry)
          Loads an instance of a class clazz, that is stored in cache under the key cacheKey.
<T> T
ICacheManager.loadDataFromCache(Class<T> clazz, Object cacheKey, long maxTimeInCacheBeforeExpiry)
          Deprecated. Loads an instance of a class clazz, that is stored in cache under the key cacheKey.
abstract  T ObjectPersister.loadDataFromCache(Object cacheKey, long maxTimeInCache)
          Load data from cache if not expired.
 

Uses of CacheLoadingException in com.octo.android.robospice.persistence.binary
 

Methods in com.octo.android.robospice.persistence.binary that throw CacheLoadingException
protected  android.graphics.Bitmap InFileBitmapObjectPersister.readCacheDataFromFile(File file)
           
protected  InputStream InFileInputStreamObjectPersister.readCacheDataFromFile(File file)
           
 

Uses of CacheLoadingException in com.octo.android.robospice.persistence.file
 

Methods in com.octo.android.robospice.persistence.file that throw CacheLoadingException
 long InFileObjectPersister.getCreationDateInCache(Object cacheKey)
           
 List<T> InFileObjectPersister.loadAllDataFromCache()
           
 T InFileObjectPersister.loadDataFromCache(Object cacheKey, long maxTimeInCache)
           
protected abstract  T InFileObjectPersister.readCacheDataFromFile(File file)
           
 

Uses of CacheLoadingException in com.octo.android.robospice.persistence.googlehttpclient.json
 

Methods in com.octo.android.robospice.persistence.googlehttpclient.json that throw CacheLoadingException
protected  T JsonObjectPersister.readCacheDataFromFile(File file)
           
 

Uses of CacheLoadingException in com.octo.android.robospice.persistence.memory
 

Methods in com.octo.android.robospice.persistence.memory that throw CacheLoadingException
 long LruCacheObjectPersister.getCreationDateInCache(Object cacheKey)
           
 List<T> LruCacheObjectPersister.loadAllDataFromCache()
           
 T LruCacheObjectPersister.loadDataFromCache(Object cacheKey, long maxTimeInCacheBeforeExpiry)
           
 

Uses of CacheLoadingException in com.octo.android.robospice.persistence.ormlite
 

Methods in com.octo.android.robospice.persistence.ormlite that throw CacheLoadingException
 long InDatabaseObjectPersister.getCreationDateInCache(Object cacheKey)
           
 List<T> InDatabaseObjectPersister.loadAllDataFromCache()
           
 T InDatabaseObjectPersister.loadDataFromCache(Object cacheKey, long maxTimeInCache)
           
 

Uses of CacheLoadingException in com.octo.android.robospice.persistence.retrofit
 

Methods in com.octo.android.robospice.persistence.retrofit that throw CacheLoadingException
protected  T RetrofitObjectPersister.readCacheDataFromFile(File file)
           
 

Uses of CacheLoadingException in com.octo.android.robospice.persistence.springandroid
 

Methods in com.octo.android.robospice.persistence.springandroid that throw CacheLoadingException
protected abstract  T SpringAndroidObjectPersister.deserializeData(String json)
           
protected  T SpringAndroidObjectPersister.readCacheDataFromFile(File file)
           
 

Uses of CacheLoadingException in com.octo.android.robospice.persistence.springandroid.json.jackson
 

Methods in com.octo.android.robospice.persistence.springandroid.json.jackson that throw CacheLoadingException
protected  T JacksonObjectPersister.deserializeData(String json)
           
 

Uses of CacheLoadingException in com.octo.android.robospice.persistence.springandroid.json.jackson2
 

Methods in com.octo.android.robospice.persistence.springandroid.json.jackson2 that throw CacheLoadingException
protected  T Jackson2ObjectPersister.deserializeData(String json)
           
 

Uses of CacheLoadingException in com.octo.android.robospice.persistence.springandroid.xml
 

Methods in com.octo.android.robospice.persistence.springandroid.xml that throw CacheLoadingException
protected  T SimpleSerializerObjectPersister.deserializeData(String xml)
           
 

Uses of CacheLoadingException in com.octo.android.robospice.persistence.string
 

Methods in com.octo.android.robospice.persistence.string that throw CacheLoadingException
protected  String InFileStringObjectPersister.readCacheDataFromFile(File file)
           
 



Copyright © 2012-2014. All Rights Reserved.