Back to project page ion.
The source code is released under:
Apache License
If you think the Android project ion 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.koushikdutta.ion; // ww w.j a v a2 s . c om /** * Callback that is invoked on download progress */ public interface ProgressCallback { /** * onProgress is invoked periodically during a request download * @param downloaded The number of bytes currently downloaded * @param total The total number of bytes in this request, or -1 if unknown */ void onProgress(long downloaded, long total); }