当在相同活动中使用单独的片段时,改造有时不起作用

时间:2017-12-09 12:15:36

标签: java android android-asynctask fragment retrofit2

我只是想知道, 当我在属于同一活动的多个片段中使用改造时,有时一个或多个片段没有来自改造回调的响应。

我在每个请求发送时写入了我的代码,但是大多数时候其中一个会得到错误代码429(请求太多)有趣的部分是当我调试我的代码时一切正常并且所有片段中的每个请求都将得到回应

我使用enqueue发送请求

/**
   * Asynchronously send the request and notify {@code callback} of its response or if an error
   * occurred talking to the server, creating the request, or processing the response.
   */
  void enqueue(Callback<T> callback);

所以请求将在另一个线程中运行

任何建议?

0 个答案:

没有答案