为了账号安全,请及时绑定邮箱和手机立即绑定

可以用volley完成同步请求吗?

可以用volley完成同步请求吗?

海绵宝宝撒 2019-08-02 03:03:47
我可以用volley完成同步请求吗?假设我在一个已经有后台线程的服务中。我是否可以在同一个线程中使用volley执行请求,以便回调同步进行?这有两个原因:-首先,我不需要另一个线程,创建它将是一种浪费。-第二,如果我在ServiceIntent中,线程的执行将在回调之前完成,因此,我将不会得到volley的响应。我知道我可以创建我自己的服务,它有一个我可以控制的运行循环线程,但是在volley中使用这个功能是可取的。谢谢!
查看完整描述

3 回答

?
RISEBY

TA贡献1856条经验 获得超5个赞

看上去这是有可能的RequestFuture班级,等级。例如,要创建同步的JSONHTTPGET请求,可以执行以下操作:

RequestFuture<JSONObject> future = RequestFuture.newFuture();JsonObjectRequest request = new JsonObjectRequest(URL, new JSONObject(), 
future, future);requestQueue.add(request);try {
  JSONObject response = future.get(); // this will block} catch (InterruptedException e) {
  // exception handling} catch (ExecutionException e) {
  // exception handling}



查看完整回答
反对 回复 2019-08-04
?
翻翻过去那场雪

TA贡献2065条经验 获得超14个赞

如果你在另一个线程上,当你没有互联网的时候,你会打一个截击电话,您的错误回调将在主线程上调用,但您所在的线程将永远被阻塞。(因此,如果该线程是IntentService,您将永远无法向它发送另一条消息,并且您的服务将基本上死掉)。

使用get()有一个超时future.get(30, TimeUnit.SECONDS)并捕捉错误以退出线程。

匹配@mathews回答:

        try {
            return future.get(30, TimeUnit.SECONDS);
        } catch (InterruptedException e) {
            // exception handling
        } catch (ExecutionException e) {
            // exception handling
        } catch (TimeoutException e) {
            // exception handling
        }

下面我用一个方法包装它&使用一个不同的请求:

   /**
     * Runs a blocking Volley request
     *
     * @param method        get/put/post etc
     * @param url           endpoint
     * @param errorListener handles errors
     * @return the input stream result or exception: NOTE returns null once the onErrorResponse listener has been called
     */
    public InputStream runInputStreamRequest(int method, String url, Response.ErrorListener errorListener) {
        RequestFuture<InputStream> future = RequestFuture.newFuture();
        InputStreamRequest request = new InputStreamRequest(method, url, future, errorListener);
        getQueue().add(request);
        try {
            return future.get(REQUEST_TIMEOUT, TimeUnit.SECONDS);
        } catch (InterruptedException e) {
            Log.e("Retrieve cards api call interrupted.", e);
            errorListener.onErrorResponse(new VolleyError(e));
        } catch (ExecutionException e) {
            Log.e("Retrieve cards api call failed.", e);
            errorListener.onErrorResponse(new VolleyError(e));
        } catch (TimeoutException e) {
            Log.e("Retrieve cards api call timed out.", e);
            errorListener.onErrorResponse(new VolleyError(e));
        }
        return null;
    }




查看完整回答
反对 回复 2019-08-04
  • 3 回答
  • 0 关注
  • 502 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信