12 lines
237 B
Plaintext
Executable File
12 lines
237 B
Plaintext
Executable File
package com.cm.utils.net.response;
|
|
|
|
/**
|
|
* Created by Xuer on 2017/3/8.
|
|
*/
|
|
public interface ResponseHandler {
|
|
void onFailure(int statusCode, String error_msg);
|
|
|
|
void onProgress(long currentBytes, long totalBytes);
|
|
}
|
|
|