CallBackListener.java 286 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
package com.example.testapp.listener;

import java.io.IOException;

import okhttp3.Call;
import okhttp3.Response;

public interface CallBackListener {

    public void onFailure(Call call, IOException e);

    public void onResponse(Call call, Response response) throws IOException;

}