- 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
102 lines
3.5 KiB
Java
102 lines
3.5 KiB
Java
package org.apache.http.impl.conn;
|
|
|
|
import java.io.IOException;
|
|
import java.util.concurrent.TimeUnit;
|
|
import org.apache.http.conn.ClientConnectionManager;
|
|
import org.apache.http.conn.ClientConnectionOperator;
|
|
import org.apache.http.conn.ClientConnectionRequest;
|
|
import org.apache.http.conn.ManagedClientConnection;
|
|
import org.apache.http.conn.routing.HttpRoute;
|
|
import org.apache.http.conn.scheme.SchemeRegistry;
|
|
import org.apache.http.params.HttpParams;
|
|
|
|
@Deprecated
|
|
/* loaded from: classes5.dex */
|
|
public class SingleClientConnManager implements ClientConnectionManager {
|
|
public static final String MISUSE_MESSAGE = "Invalid use of SingleClientConnManager: connection still allocated.\nMake sure to release the connection before allocating another one.";
|
|
protected boolean alwaysShutDown;
|
|
protected ClientConnectionOperator connOperator;
|
|
protected long connectionExpiresTime;
|
|
protected volatile boolean isShutDown;
|
|
protected long lastReleaseTime;
|
|
protected ConnAdapter managedConn;
|
|
protected SchemeRegistry schemeRegistry;
|
|
protected PoolEntry uniquePoolEntry;
|
|
|
|
public class PoolEntry extends AbstractPoolEntry {
|
|
public PoolEntry() {
|
|
super(null, null);
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public void close() throws IOException {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public void shutdown() throws IOException {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
}
|
|
|
|
public class ConnAdapter extends AbstractPooledConnAdapter {
|
|
public ConnAdapter(PoolEntry poolEntry, HttpRoute httpRoute) {
|
|
super(null, null);
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
}
|
|
|
|
public SingleClientConnManager(HttpParams httpParams, SchemeRegistry schemeRegistry) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public void finalize() throws Throwable {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.conn.ClientConnectionManager
|
|
public SchemeRegistry getSchemeRegistry() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public ClientConnectionOperator createConnectionOperator(SchemeRegistry schemeRegistry) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public final void assertStillUp() throws IllegalStateException {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.conn.ClientConnectionManager
|
|
public final ClientConnectionRequest requestConnection(HttpRoute httpRoute, Object obj) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public ManagedClientConnection getConnection(HttpRoute httpRoute, Object obj) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.conn.ClientConnectionManager
|
|
public void releaseConnection(ManagedClientConnection managedClientConnection, long j, TimeUnit timeUnit) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.conn.ClientConnectionManager
|
|
public void closeExpiredConnections() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.conn.ClientConnectionManager
|
|
public void closeIdleConnections(long j, TimeUnit timeUnit) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.conn.ClientConnectionManager
|
|
public void shutdown() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public void revokeConnection() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
}
|