11 lines
235 B
Java
11 lines
235 B
Java
|
package okhttp3;
|
||
|
|
||
|
import java.io.IOException;
|
||
|
|
||
|
/* loaded from: classes.dex */
|
||
|
public interface Callback {
|
||
|
void onFailure(Call call, IOException iOException);
|
||
|
|
||
|
void onResponse(Call call, Response response) throws IOException;
|
||
|
}
|