如何设置标记到请求并从Response Volley异步请求获取?

时间:2016-03-21 09:59:19

标签: android android-fragments android-intent android-volley android-internet

我有一个带有多个REST Api的Android应用程序。 API使用Volley库进行管理。反应越来越好,而且很好。但是当我发出异步请求时,我无法识别每个请求的响应。

我的请求方法是:

private void httpCall(String URL, String json, String session key, int type) {
        try {
            SSLContext sslcontext = SSLContext.getInstance("TLSv1");
           sslcontext.init(null,
                    null,
                    null);
            SSLSocketFactory NoSSLv3Factory = new NoSSLv3SocketFactory(sslcontext.getSocketFactory());
            HttpsURLConnection.setDefaultSSLSocketFactory(NoSSLv3Factory);

            Log.i(REQUEST_TAG, "httpCall=url" + url + "::type" + type);
            Log.i(REQUEST_TAG, "httpCall=json" + json);
        } catch (Exception e) {
            e.printStackTrace();

        }
        if (mContext != null)
            mQueue = CustomVolleyRequestQueue.getInstance(mContext).getRequestQueue();
        else
            mQueue = CustomVolleyRequestQueue.getInstance(mActivity).getRequestQueue();
        JSONObject mJSONObject;
        final CustomJSONObjectRequest jsonRequest;
        try {
            if ((json != null) && (json.trim().length() > 0)) {
                mJSONObject = new JSONObject(json);
            } else {
                mJSONObject = new JSONObject();
            }
            jsonRequest = new CustomJSONObjectRequest(sessionkey, type, url, mJSONObject, this, this);
            // Wait 20 seconds and don't retry more than once
            jsonRequest.setRetryPolicy(new DefaultRetryPolicy(
                    (int) TimeUnit.SECONDS.toMillis(20),
                    DefaultRetryPolicy.DEFAULT_MAX_RETRIES,
                    DefaultRetryPolicy.DEFAULT_BACKOFF_MULT));

            jsonRequest.setTag(REQUEST_TAG);
            mQueue.add(jsonRequest);
        } catch (JSONException e) {
            e.printStackTrace();
        }
    }

是否有任何选项可以为请求设置标记并从响应中获取相同内容?这样我就可以识别当前的请求和响应。我不知道这是一个重复的问题,但我没有得到适当的解释。

我的回应方法是:

@Override
    public void onResponse(Object response) {
        if (response != null) {

            // I want to trigger the request tag from here

            mCallBack.onSuccessData(response);
        }
    }

请求和响应方法在同一个类中,类实现了Response.Listener,Response.ErrorListener。

1 个答案:

答案 0 :(得分:2)

您分配给请求的标记存储在变量 mTag 中,该变量在请求的整个生命周期中保持不变。

public Request<?> setTag(Object tag) {
    mTag = tag;
    return this;
}

对于我的应用程序,我稍微修改了以下的Volley类:

在课程请求中,将mTag的可见性从私有更改为受保护的

/** An opaque token tagging this request; used for bulk cancellation. */
    protected Object mTag;

在课程响应中,将对象标记添加到界面监听器

中定义的回调函数 onResponse >
/** Callback interface for delivering parsed responses. */
public interface Listener<T> {
    /** Called when a response is received. */
    public void onResponse(Object tag, T response);
}

在实现接口 Response.Listener 的类中,例如 JsonRequest

@Override
protected void deliverResponse(T response) {
    mListener.onResponse(mTag, response);
}