
OkHttp3
Davisxy
这个作者很懒,什么都没留下…
展开
-
okHttp3 Protocol
okHttp3 Protocolpublic enum Protocol { HTTP_1_0("http/1.0"), HTTP_1_1("http/1.1"), SPDY_3("spdy/3.1"), HTTP_2("h2"), H2_PRIOR_KNOWLEDGE("h2_prior_knowledge"), QUIC("quic"); p原创 2018-10-18 23:15:13 · 2296 阅读 · 0 评论 -
OkHttp3 Dispatcher
OkHttp3 Dispatcher调度器public final class Dispatcher { private int maxRequests = 64; private int maxRequestsPerHost = 5; private @Nullable Runnable idleCallback; /** Executes calls. Created l...原创 2018-10-16 15:19:38 · 1166 阅读 · 0 评论 -
OkHttp3 Proxy
OkHttp3 Proxy每次我看到代理,都感到特激动,因为我也不会;public class Proxy { /** * Represents the proxy type. * * @since 1.5 */ public enum Type { /** * Represents a direct...原创 2018-10-16 17:40:51 · 4001 阅读 · 0 评论