最近我司大佬们在项目中引进了协程,之前现已和咱们介绍过协程了,不清楚的同学能够看一下之前的文章。

《抽丝剥茧Kotlin – 协程》

今天和咱们介绍一个协程的okhttp面试答复小技巧,Retrofit自 2.6 版别后,原生支持协程,所以运用 协程 + Retrofit 能够缩减咱们的代码,加速咱们的运用开发。

协程+Retrofit 让你的代码满足高雅

尽管,很多大佬们都现已十分了解这个技巧,万一有同学不了解呢?

方针

简略起见,咱们运用 Github 官方html是什么意思的 Api,查询官OKHttp方回来的仓库列表。

假设你学习过官方 Paging Demo 的源码,会giti发现github中文官网网页这份代码很了解,因为这份代码很gitee大一部分来自这个Demo。

一、引进依靠线程池的创立方法有几种

协程和okhttp封装 R线程池面试题etrofit 的版别:

dependencies {
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4线程撕裂者.2'
implementation "o线程安全rg.jetbrains.kotlokhttp面试答复inx:kotlinx-coroutines-android:1.4.2"
implementation 'com.squareup.retrofit2:retrofit:2.9.0'github永久回家地址
implemenOKHttptation 'com.squareup.retrofit2:converter-gson:2.9.0'
imhtml简略网页代码plementation 'cohtml是什么意思m.squareup.okhttp3:logging-interceptokhttp3源码剖析or:4.0.0'
}

二、运用Retrofit

创立一个 interface

interface GithugitlabbApi {
@GET("search/repositories?sort=stars")
suspend fun se线程池archRepos(
@Query("q") query: Strgitlabing,
@Query("page") page: Int,
@Query("per_page") itemsPerPage: Int
): RepoSearchResponse
}

和我kotlin现在不火了们往常运用 Retrofit 有两点不相同:

  1. 需求在函数前加上 suspend 修饰符
  2. 直接运用咱们需求回来的类型kotlin语言,不需求包上 Call<T> 或许 Observable<T>

RepoSearchResponse 是回来的数据:

data class RepoSearchResponse(
@SerigitializedName("total线程撕裂者_count") val total: Int = 0,
@SerializedName("items") val items: List<Repo> = emptyListKotlin()
)
data cla线程安全ss Repo(
@SerializedName("id") val id: Long,
@SerializedName("name") val name: String,html简略网页代码
@SerializedName("full_name") val fullName: String,
@SerializedName(线程池面试题"description") val description: String?,
@SerializedName("html_url") val url: String,
@SerializedName("stargazers_count") val stars: Intokhttp3下载,
@SerializedNamKotline("forokhttp面试答复ks_count") val forks: Int,
@SerializedName("language") val languaggitlabe: String?
)

之后的进程就和咱们往常运用 Retrofit 共同:

  1. 创立一个 OkHttpClient
  2. 创立一个 Retrofit
  3. 回来上面github敞开私库创立的接口

代码:

interface GithHTMLubApi {
//... 代码省掉
companion object {
private const val BAokhttp运用过程SE_URL = "https://api.github.com/"
fun createGithhtml标签ubApi(): GithubApi {
val logger = HttpLoggingInterceptor()gitee
logger.level = HttpLoggingInterceptor.Level.线程池面试题BASIC
val client = OkHttpClient.Builder()
.addInterceptor(logger)
.sslSocketFactory(SSLSocketClient.getSSLSocketFactory(),
object : X509Tr线程池面试题uHTMLstManager {
override fun checkClientTrusted(
chain: Array<X509Certificate>,
authType: String
) {}
override fun checkServerTrusted(
chain: Array<X509Certificate>,
authType: String
) {}
override fun getAcceptedI线程撕裂者ssuers(): Array<X509Certificate> {
return arrayOf()
}html是什么意思
})
.hostnameVerifier(SSLSocketClient.getHostnamgithub永久回家地址eVerifier())
.build()
return Retrofit.Builder()
.baseUrl(BASE_URL)
.client(cliKotlinent)
.addConverterFactory(GsonConverterFactory.create())
.build()
.create(GithubApi::clasKotlins.java)
}
}
}

因为接口是 Https 央求,所以需求加上忽略 SSL 的验证,其他都相同了。

三、运用协程去央求

初始化 RecyclerViewokhttp面试答复 的代码就不放了,比较简略:

class MainActivity : AppCompatActivity() {
val scope = MainScope()
private val mAdapter by lazy {
MainAdapter()
}
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
// ... 初始化RecyclerView
fetchData()
}
private fuhtmln fetchData(){
scope.launch {
tr线程y {
val result = GithubApi.creakotlin和javateGithhtml5ubApi().searchRepos(giti轮胎是什么品牌"Android", 0, 20)
if(result != null && !result.items.isNullOrEmpty()){
mAdapter.submitList(rehtml简略网页代码sult.items)
}
}catch (e: Exception){
e.printStackTrace()
}
}
}
override fun onDestroy() {
super.onDestroy()
scope.cancel()
}
}

协程中最便当的仍是省去切线程的进程,用同步Git代码处理耗时的异步网络央求

需求留意的是,因为没有运用 Lifegithub敞开私库cycleKTX 的扩展库,所以协程作用域的生命周期得咱们自己去开释,在上面的代html简略网页代码码中,我是在 onCreate 方法中启动了一个协程,然后在 onDestroy 方法中去取消了正在履行的任务,以防内okhttp优点存泄露。

总结

协程 + Retrofit 的便当之处在于:运用同步代码处理异步的网络央求,减去 Retrofit 中网络回调或许 RxJava + Retrofit 的央求回调

精彩内容

假设觉得本文不错,「点赞」是对作者最大的鼓动~

技术不止,文章有料,重视群众号 九心说,每周一篇高质好文,和九心在大厂路上肩并肩。