
com.koushikdutta.ion.ProgressCallback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ion Show documentation
Show all versions of ion Show documentation
Android Asynchronous Networking Made Easy
package com.koushikdutta.ion;
/**
* 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);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy