aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com/android/volley/Request.java
diff options
context:
space:
mode:
authorAnonymous <no-reply@google.com>2020-10-07 17:22:55 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2020-10-07 17:22:55 +0000
commit82c0ddbc31cffa3a4580bba39c970c914cbc01a7 (patch)
treeb9b7a6b9928136e83fda62aaa8b8887df88839b5 /src/main/java/com/android/volley/Request.java
parentac0ecd4e10f680027224ddb392ec87701007dfa4 (diff)
parenta0f072f60a3017d852d79ca73601723045071139 (diff)
downloadvolley-82c0ddbc31cffa3a4580bba39c970c914cbc01a7.tar.gz
Import of Volley from GitHub to AOSP. am: b6bd7aa39d am: 839f7a7fb2 am: a0f072f60a
Original change: https://android-review.googlesource.com/c/platform/external/volley/+/1452115 Change-Id: Ia09e4f359a6aa3580b18190e6a5617143df2e243
Diffstat (limited to 'src/main/java/com/android/volley/Request.java')
-rw-r--r--src/main/java/com/android/volley/Request.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/main/java/com/android/volley/Request.java b/src/main/java/com/android/volley/Request.java
index 2b53f96..b60dc74 100644
--- a/src/main/java/com/android/volley/Request.java
+++ b/src/main/java/com/android/volley/Request.java
@@ -107,6 +107,9 @@ public abstract class Request<T> implements Comparable<Request<T>> {
/** Whether the request should be retried in the event of an HTTP 5xx (server) error. */
private boolean mShouldRetryServerErrors = false;
+ /** Whether the request should be retried in the event of a {@link NoConnectionError}. */
+ private boolean mShouldRetryConnectionErrors = false;
+
/** The retry policy for this request. */
private RetryPolicy mRetryPolicy;
@@ -534,6 +537,25 @@ public abstract class Request<T> implements Comparable<Request<T>> {
}
/**
+ * Sets whether or not the request should be retried in the event that no connection could be
+ * established.
+ *
+ * @return This Request object to allow for chaining.
+ */
+ public final Request<?> setShouldRetryConnectionErrors(boolean shouldRetryConnectionErrors) {
+ mShouldRetryConnectionErrors = shouldRetryConnectionErrors;
+ return this;
+ }
+
+ /**
+ * Returns true if this request should be retried in the event that no connection could be
+ * established.
+ */
+ public final boolean shouldRetryConnectionErrors() {
+ return mShouldRetryConnectionErrors;
+ }
+
+ /**
* Priority values. Requests will be processed from higher priorities to lower priorities, in
* FIFO order.
*/