13 lines
330 B
Plaintext
Executable File
13 lines
330 B
Plaintext
Executable File
package com.cm.utils.net.response;
|
|
|
|
import java.io.File;
|
|
/**
|
|
* Created by Xuer on 2017/3/8.
|
|
*/
|
|
public abstract class DownloadResponseHandler {
|
|
|
|
public abstract void onFinish(File download_file);
|
|
public abstract void onProgress(long currentBytes, long totalBytes);
|
|
public abstract void onFailure(String error_msg);
|
|
}
|