okhttp3请求流程分析

图解

在这里插入图片描述

在这里插入图片描述

1.简单的get异步请求

        String url = "https://www.baidu.com/";
        OkHttpClient okHttpClient = new OkHttpClient();
        Request request = new Request.Builder().url(url).build();
        Call call = okHttpClient.newCall(request);
        call.enqueue(new Callback() {
   
            @Override
            public void onFailure(Call call, IOException e) {
   

            }

            @Override
            public void onResponse(Call call, Response response) throws IOException {
   

                Log.d(TAG, "onResponse: response="+response.toString());
            }
        });

一:创建OkHttpClient对象

        OkHttpClient okHttpClient = new OkHttpClient()

okhttp源码

       public OkHttpClient() {
   
         this(new Builder());
	}

创建的 OkHttpClient对象时并且默认构造builder对象进行初始化

二:初始化请求对象

        Request request = new Request.Builder().url(url).build();

Request:每一次网络请求都是一个request,Request是对url,method,header,body的封装,也是对http协议中请求行、请求头和实体内容的封装。属于构建者模式。
##三:发起请求

@Override 
public Call newCall(Request request) {
   
    return new RealCall(this, request, false /* for web socket */);
  }

RealCall是Call接口的实现

final class RealCall implements Call {
   
 RealCall(OkHttpClient client, Request originalRequest, boolean forWebSocket) {
   
    final EventListener.Factory eventListenerFactory = client.eventListenerFactory();

    this.client = client;
    this.originalRequest = originalRequest;
    this.forWebSocket = forWebSocket;
    this.retryAndFollowUpInterceptor = new RetryAndFollowUpInterceptor(client, forWebSocket);

    // TODO(jwilson): this is unsafe publication and not threadsafe.
    this.eventListener = eventListenerFactory.create(this);
  }
}

###异步请求的执行流程

@Override public void enqueue(Callback responseCallback) {
   
    synchronized (this) {
   
      
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值