Files
rr3-apk/decompiled-community/sources/org/apache/http/impl/AbstractHttpClientConnection.java
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- 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
2026-02-18 15:48:36 -08:00

96 lines
3.3 KiB
Java

package org.apache.http.impl;
import java.io.IOException;
import org.apache.http.HttpClientConnection;
import org.apache.http.HttpConnectionMetrics;
import org.apache.http.HttpEntityEnclosingRequest;
import org.apache.http.HttpException;
import org.apache.http.HttpRequest;
import org.apache.http.HttpResponse;
import org.apache.http.HttpResponseFactory;
import org.apache.http.impl.entity.EntityDeserializer;
import org.apache.http.impl.entity.EntitySerializer;
import org.apache.http.io.HttpMessageParser;
import org.apache.http.io.HttpMessageWriter;
import org.apache.http.io.SessionInputBuffer;
import org.apache.http.io.SessionOutputBuffer;
import org.apache.http.params.HttpParams;
@Deprecated
/* loaded from: classes5.dex */
public abstract class AbstractHttpClientConnection implements HttpClientConnection {
public abstract void assertOpen() throws IllegalStateException;
public AbstractHttpClientConnection() {
throw new RuntimeException("Stub!");
}
public EntityDeserializer createEntityDeserializer() {
throw new RuntimeException("Stub!");
}
public EntitySerializer createEntitySerializer() {
throw new RuntimeException("Stub!");
}
public HttpResponseFactory createHttpResponseFactory() {
throw new RuntimeException("Stub!");
}
public HttpMessageParser createResponseParser(SessionInputBuffer sessionInputBuffer, HttpResponseFactory httpResponseFactory, HttpParams httpParams) {
throw new RuntimeException("Stub!");
}
public HttpMessageWriter createRequestWriter(SessionOutputBuffer sessionOutputBuffer, HttpParams httpParams) {
throw new RuntimeException("Stub!");
}
public void init(SessionInputBuffer sessionInputBuffer, SessionOutputBuffer sessionOutputBuffer, HttpParams httpParams) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpClientConnection
public boolean isResponseAvailable(int i) throws IOException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpClientConnection
public void sendRequestHeader(HttpRequest httpRequest) throws HttpException, IOException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpClientConnection
public void sendRequestEntity(HttpEntityEnclosingRequest httpEntityEnclosingRequest) throws HttpException, IOException {
throw new RuntimeException("Stub!");
}
public void doFlush() throws IOException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpClientConnection
public void flush() throws IOException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpClientConnection
public HttpResponse receiveResponseHeader() throws HttpException, IOException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpClientConnection
public void receiveResponseEntity(HttpResponse httpResponse) throws HttpException, IOException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpConnection
public boolean isStale() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpConnection
public HttpConnectionMetrics getMetrics() {
throw new RuntimeException("Stub!");
}
}