Back to project page cube-sdk.
The source code is released under:
Apache License
If you think the Android project cube-sdk listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package in.srain.cube.request; /*from w w w . j a v a 2 s . com*/ public interface CacheAbleRequestHandler<T1> extends RequestHandler<T1> { /** * the data from cache, outOfDate detective if the data is out of date. */ public void onCacheData(T1 data, boolean outOfDate); public void onCacheAbleRequestFinish(T1 data, CacheAbleRequest.ResultType type, boolean outOfDate); }