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.image.iface; //from w w w.j av a 2 s .co m import in.srain.cube.cache.IFileCache; import java.io.FileInputStream; public interface ImageFileProvider extends IFileCache { public FileInputStream getInputStream(String key); public FileInputStream downloadAndGetInputStream(String key, String url); public void flushDiskCacheAsync(); public void initDiskCacheAsync(); }