12 lines
237 B
Plaintext
12 lines
237 B
Plaintext
|
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);
|
||
|
}
|
||
|
|