- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
33 lines
695 B
Java
33 lines
695 B
Java
package com.mbridge.msdk.thrid.okhttp;
|
|
|
|
import java.io.IOException;
|
|
import java.util.concurrent.TimeUnit;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public interface Interceptor {
|
|
|
|
public interface Chain {
|
|
Call call();
|
|
|
|
int connectTimeoutMillis();
|
|
|
|
Connection connection();
|
|
|
|
Response proceed(Request request) throws IOException;
|
|
|
|
int readTimeoutMillis();
|
|
|
|
Request request();
|
|
|
|
Chain withConnectTimeout(int i, TimeUnit timeUnit);
|
|
|
|
Chain withReadTimeout(int i, TimeUnit timeUnit);
|
|
|
|
Chain withWriteTimeout(int i, TimeUnit timeUnit);
|
|
|
|
int writeTimeoutMillis();
|
|
}
|
|
|
|
Response intercept(Chain chain) throws IOException;
|
|
}
|