@Experimental public class DefaultBackoffStrategy extends Object implements ConnectionBackoffStrategy
ConnectionBackoffStrategy backs off either for a raw
network socket or connection timeout or if the server explicitly
sends a 429 (Too Many Requests) or a 503 (Service Unavailable) response.| 构造器和说明 |
|---|
DefaultBackoffStrategy() |
| 限定符和类型 | 方法和说明 |
|---|---|
boolean |
shouldBackoff(HttpResponse response)
Determines whether receiving the given
HttpResponse as
a result of request execution should result in a backoff
signal. |
boolean |
shouldBackoff(Throwable t)
Determines whether seeing the given
Throwable as
a result of request execution should result in a backoff
signal. |
public boolean shouldBackoff(Throwable t)
ConnectionBackoffStrategyThrowable as
a result of request execution should result in a backoff
signal.shouldBackoff 在接口中 ConnectionBackoffStrategyt - the Throwable that happenedtrue if a backoff signal should be
givenpublic boolean shouldBackoff(HttpResponse response)
ConnectionBackoffStrategyHttpResponse as
a result of request execution should result in a backoff
signal. Implementations MUST restrict themselves to examining
the response header and MUST NOT consume any of the response
body, if any.shouldBackoff 在接口中 ConnectionBackoffStrategyresponse - the HttpResponse that was receivedtrue if a backoff signal should be
givenCopyright © 2023. All rights reserved.