OkhttpChainDemo:okhttp中用到的经典的责任链模式

时间:2024-05-18 09:06:39
【文件属性】:

文件名称:OkhttpChainDemo:okhttp中用到的经典的责任链模式

文件大小:8KB

文件格式:ZIP

更新时间:2024-05-18 09:06:39

Java

OkhttpChineDemo okhttp中用到的经典的责任链模式。 /** * 责任链模式: * 可以看到,这个类其实本质就是一个中转的类,用来存储已经实例化好的StreamAllocation,RealConnection,HttpCodec * 每个Interceptor相当于一层,跟http协议很相似,每一层都有自己的使命。上一层没问题,才会将Request传达到下一层。 * 与logger中的流程其实是一样的。 * */ public class RealInterceptChain implements Chain { private final List interceptors; private final int index; private Request request; private fina


【文件预览】:
OkhttpChainDemo-master
----src()
--------chain()
--------logger()
----README.md(2KB)

网友评论