All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.koushikdutta.ion.ProgressCallback Maven / Gradle / Ivy

There is a newer version: 3.1.0
Show newest version
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