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

vip.ipav.okhttp.response.DownloadResponseHandler Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
package vip.ipav.okhttp.response;

import java.io.File;

/**
 * 下载回调
 * Created by tsy on 16/8/16.
 */
public abstract class DownloadResponseHandler {

    public void onStart(long totalBytes) {}

    public void onCancel() {}

    public abstract void onFinish(File downloadFile);
    public abstract void onProgress(long currentBytes, long totalBytes);
    public abstract void onFailure(String error_msg);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy