Back to project page FrameLite.
The source code is released under:
GNU General Public License
If you think the Android project FrameLite 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 com.miku.framelite.httpx; /* w ww . j a va 2 s. c o m*/ import java.io.File; public interface IDownloadHandler { public void stop(); public boolean isStop(); public interface DownloadCallback{ public void onLoading(long count, long current); public void onSuccess(File t); public void onFailure(Exception e,int errorNo,String strMsg); public void onStart(); } }