commonMain.com.lt.lazy_people_http.call.Callback.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of LazyPeopleHttp-lib-jvm Show documentation
Show all versions of LazyPeopleHttp-lib-jvm Show documentation
Lazy people http, Retrofit of kmp all targets
package com.lt.lazy_people_http.call
/**
* creator: lt 2023/3/9 [email protected]
* effect : 异步请求的回调
* warning:
*/
interface Callback {
/**
* 表示请求成功
*/
fun onResponse(call: Call, response: T)
/**
* 表示请求失败
*/
fun onFailure(call: Call, t: Throwable?)
}