XiMengJianYu/.svn/pristine/4a/4a2f4fba4b6973e14f87287c111789608c941810.svn-base
2023-04-17 17:58:44 +08:00

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);
}