public interface OnDownloadListener
| Modifier and Type | Method and Description |
|---|---|
default void |
onByte(java.io.File file,
long totalByte,
long downloadByte)
下载字节改变
|
void |
onComplete(java.io.File file)
下载完成
|
void |
onEnd(java.io.File file)
下载结束
|
void |
onError(java.io.File file,
java.lang.Exception e)
下载出错
|
void |
onProgress(java.io.File file,
int progress)
下载进度改变
|
void |
onStart(java.io.File file)
下载开始
|
void onStart(java.io.File file)
default void onByte(java.io.File file,
long totalByte,
long downloadByte)
totalByte - 总字节数downloadByte - 已下载字节数void onProgress(java.io.File file,
int progress)
progress - 下载进度值(0-100)void onComplete(java.io.File file)
void onError(java.io.File file,
java.lang.Exception e)
void onEnd(java.io.File file)