- 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
38 lines
1.1 KiB
Java
38 lines
1.1 KiB
Java
package org.apache.http.conn.params;
|
|
|
|
import org.apache.http.params.HttpParams;
|
|
|
|
@Deprecated
|
|
/* loaded from: classes5.dex */
|
|
public final class ConnManagerParams implements ConnManagerPNames {
|
|
public static final int DEFAULT_MAX_TOTAL_CONNECTIONS = 20;
|
|
|
|
public ConnManagerParams() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public static long getTimeout(HttpParams httpParams) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public static void setTimeout(HttpParams httpParams, long j) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public static void setMaxConnectionsPerRoute(HttpParams httpParams, ConnPerRoute connPerRoute) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public static ConnPerRoute getMaxConnectionsPerRoute(HttpParams httpParams) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public static void setMaxTotalConnections(HttpParams httpParams, int i) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public static int getMaxTotalConnections(HttpParams httpParams) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
}
|