feiyu02
2024-09-10 6c7f45871b93ef26d353a5a3596701ac2f39ed9c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package cn.flightfeather.supervision.common.net
 
import org.apache.commons.httpclient.HttpMethodBase
 
/**
 * @author riku
 * Date: 2020/10/15
 */
interface ResponseCallBack {
 
    fun onSuccess(m: HttpMethodBase)
 
    fun onFail(code: Int)
}