- 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
40 lines
1.0 KiB
Java
40 lines
1.0 KiB
Java
package org.apache.http.conn.params;
|
|
|
|
import java.util.Map;
|
|
import org.apache.http.conn.routing.HttpRoute;
|
|
|
|
@Deprecated
|
|
/* loaded from: classes5.dex */
|
|
public final class ConnPerRouteBean implements ConnPerRoute {
|
|
public static final int DEFAULT_MAX_CONNECTIONS_PER_ROUTE = 2;
|
|
|
|
public ConnPerRouteBean(int i) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public ConnPerRouteBean() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public int getDefaultMax() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public void setDefaultMaxPerRoute(int i) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public void setMaxForRoute(HttpRoute httpRoute, int i) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.conn.params.ConnPerRoute
|
|
public int getMaxForRoute(HttpRoute httpRoute) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public void setMaxForRoutes(Map<HttpRoute, Integer> map) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
}
|