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.cache; /*w ww . j a v a2 s . c o m*/ public interface IFileCache { public String getCachePath(); public long getUsedSpace(); public void clearCache(); public long getMaxSize(); public boolean has(String key); }