Files
rr3-apk/decompiled/sources/org/apache/http/conn/params/ConnManagerParams.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

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!");
}
}