Beispiel #1
0
 protected void onGetImageError(String cacheKey, VolleyError error) {
   BatchedImageRequest request = (BatchedImageRequest) this.mInFlightRequests.remove(cacheKey);
   if (request != null) {
     request.setError(error);
     batchResponse(cacheKey, request);
   }
 }
  /**
   * Handler for when an image failed to load.
   *
   * @param cacheKey The cache key that is associated with the image request.
   */
  protected void onGetImageError(String cacheKey, VolleyError error) {
    // Notify the requesters that something failed via a null result.
    // Remove this request from the list of in-flight requests.
    BatchedImageRequest request = mInFlightRequests.remove(cacheKey);

    if (request != null) {
      // Set the error for this request
      request.setError(error);

      // Send the batched response
      batchResponse(cacheKey, request);
    }
  }