okhttp3

使用流程

okhttp3_第1张图片

 

异步同步请求核心方法 getReponseWithInterceptorChain() 执行流程

核心拦截器:

RetryAndFollowUpInterceptor  职责:重试和对response进行下一步的处理
BridgeInterceptor 职责:对request加上各种header,得到response后如果gzip压缩了进行解压
CacheInterceptor 职责: 对request,resposne进行缓存,包括缓存时间计算,本次call是否直接取缓存等
ConnectInterceptor(..) 职责:建立socket链接连接,管理连接,包括是否重用connection等
CallServerInterceptor(...) 职责:向服务器写入数据,读取返回数据

 

okhttp3_第2张图片

 

 

 

异步请求call.enqueue(callback)  流程

okhttp3_第3张图片

你可能感兴趣的:(okhttp3)