19 lines
376 B
Java
19 lines
376 B
Java
|
package okhttp3.repackaged;
|
||
|
|
||
|
import java.io.IOException;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public interface Interceptor {
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public interface Chain {
|
||
|
Connection connection();
|
||
|
|
||
|
Response proceed(Request request) throws IOException;
|
||
|
|
||
|
Request request();
|
||
|
}
|
||
|
|
||
|
Response intercept(Chain chain) throws IOException;
|
||
|
}
|