[네이비] Volley Request 2
3790 단어 request
Volley의 요청 대상입니다. Network는 Request를 요청합니다.
Request 구성
public Request(int method, String url, Response.ErrorListener listener) {
mMethod = method;
mUrl = url;
mErrorListener = listener;
setRetryPolicy(new DefaultRetryPolicy());
mDefaultTrafficStatsTag = findDefaultTrafficStatsTag(url);
}
요청 만들기;이것은 요청 방식이 필요합니다:method.GET POST 같은 것들, 그리고 요청한 url.또 하나는리셋에 성공하는 방법을 요청하면listener, 리셋에 실패하는 방법listener가 그를 실행합니다.
여기서 setRetryPolicy () 는 재시도 정책입니다. (여기는 아직 보지 않았습니다. 연결이 성공적으로 재연결되지 않은 것으로 추정됩니다.)
mDefaultTrafficStatsTag은 Url이 비어 있는지 아닌지를 먼저 판단하고 비어 있지 않으면 Uri를 판단합니다.parse(url);ui로 변환할 수 있는지 여부입니다. 변환에 성공하면 ui 문자열을 되돌려줍니다.Hashcode();
그리고 일련의 조작에 따라 이 요청에서network에서 대응하는 정보를 읽습니다.
/**
* Request method of this request. Currently supports GET, POST, PUT,
* DELETE, HEAD, OPTIONS, TRACE, and PATCH.
*/
private final int mMethod;
/** URL of this request. */
private final String mUrl;
/** Default tag for {@link TrafficStats}. */
private final int mDefaultTrafficStatsTag;
/** Listener interface for errors. */
private final Response.ErrorListener mErrorListener;
/** Sequence number of this request, used to enforce FIFO ordering. */
private Integer mSequence;
/** The request queue this request is associated with. */
private RequestQueue mRequestQueue;
/** Whether or not responses to this request should be cached. */
private boolean mShouldCache = true;
/** Whether or not this request has been canceled. */
private boolean mCanceled = false;
/** Whether or not a response has been delivered for this request yet. */
private boolean mResponseDelivered = false;
// A cheap variant of request tracing used to dump slow requests.
private long mRequestBirthTime = 0;
/**
* Threshold at which we should log the request (even when debug logging is
* not enabled).
*/
private static final long SLOW_REQUEST_THRESHOLD_MS = 3000;
/** The retry policy for this request. */
private RetryPolicy mRetryPolicy;
/**
* When a request can be retrieved from cache but must be refreshed from the
* network, the cache entry will be stored here so that in the event of a
* "Not Modified" response, we can be sure it hasn't been evicted from
* cache.
*/
private Cache.Entry mCacheEntry = null;
/** An opaque token tagging this request; used for bulk cancellation. */
private Object mTag;
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
java에서 HttpRequest Header를 가져오는 몇 가지 방법이 포털은 모든 응용 프로그램의 입구이다. 사용자가 포털에 로그인한 후에 다른 시스템에 들어가면 유사한 단일 로그인(SSO)이 필요하다.각 서브시스템에 들어갈 때 다시 로그인할 필요가 없다. 물론 유사한 기능은 전문...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.