当面时问道“Okhttp连接池是咋实现“时,app优化的内容及策略

本文深入探讨了OkHttp连接池的工作原理,从`ConnectInterceptor`到`RealConnectionPool`,详细解析了连接的获取、健康检查以及连接池的管理过程,包括连接的存储和清理策略,对于理解和优化Android App的网络性能具有指导意义。
摘要由CSDN通过智能技术生成

originalRequest, this, client.connectTimeoutMillis(),

client.readTimeoutMillis(), client.writeTimeoutMillis());

try {

Response response = chain.proceed(originalRequest);

return response;

} catch (IOException e) {

} finally {

}

}

}

2.ConnectInterceptor#intercept

连接池在ConnectInterceptor中包装起来了,我们进去瞄一眼:

@Override

public Response intercept(Chain chain) throws IOException {

RealInterceptorChain realChain = (RealInterceptorChain) chain;

Request request = realChain.request();

//拿到chain的Transmitter,里面包装了RealCall、okhttpClient、connectionPool等信息

Transmitter transmitter = realChain.transmitter();

//是否不是get请求

boolean doExtensiveHealthChecks = !request.method().equals(“GET”);

Exchange exchange = transmitter.newExchange(chain, doExtensiveHealthChecks);

return realChain.proceed(request, transmitter, exchange);

}

3.Transmitter#newExchange

拿到chain的Transmitter对象,该对象是RealCallokhttpClientconnectionPool等信息的包装类,将是否不是get请求的标识传给了transmitternewExchange方法:

Exchange newExchange(Interceptor.Chain chain, boolean doExtensiveHealthChecks) {

//exchangeFinder是对connectionPool、connectionPool、request等信息的包装,它是在RetryAndFollowUpInterceptor拦截器中初始化出来的

ExchangeCodec codec = exchangeFinder.find(client, chain, doExtensiveHealthChecks);

Exchange result = new Exchange(this, call, eventListener, exchangeFinder, codec);

synchronized (connectionPool) {

this.exchange = result;

return result;

}

}

4.ExchangeCodec#find

该方法中将ExchangeCodec的获取交给了exchangeFinder对象,ExchangeCodec是一个接口,实现类有Http2ExchangeCodecHttp1ExchangeCodec,这两个类表示http1和http2的建立连接的类,里面实现了writeRequestHeaderscreateRequestBody等方法,这两个方法是在CallServerInterceptor拦截器中使用的。exchangeFinder是对connectionPool、connectionPool、request等信息的包装,它是在RetryAndFollowUpInterceptor拦截器中初始化出来的。我们接着看exchangeFinder的find方法:

public ExchangeCodec find(

OkHttpClient client, Interceptor.Chain chain, boolean doExtensiveHealthChecks) {

int connectTimeout = chain.connectT

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值