नोट @ मैथ्यूज़ का उत्तर सही है, लेकिन यदि आप किसी अन्य थ्रेड पर हैं और आपके पास कोई इंटरनेट नहीं होने पर वॉली कॉल करते हैं, तो आपकी त्रुटि कॉलबैक को मुख्य थ्रेड पर कॉल किया जाएगा, लेकिन आप जिस थ्रेड पर हैं, वह हमेशा के लिए अवरोधित हो जाएगा। (इसलिए यदि वह धागा एक IntentService है, तो आप कभी भी इसे एक और संदेश नहीं भेज पाएंगे और आपकी सेवा मूल रूप से मृत हो जाएगी)।
उस समय के संस्करण का उपयोग करें जिसमें get()
टाइमआउट है future.get(30, TimeUnit.SECONDS)
और अपने धागे से बाहर निकलने के लिए त्रुटि को पकड़ें।
@ मैथ्यूज मैच का जवाब देने के लिए:
try {
return future.get(30, TimeUnit.SECONDS);
} catch (InterruptedException e) {
// exception handling
} catch (ExecutionException e) {
// exception handling
} catch (TimeoutException e) {
// exception handling
}
नीचे मैंने इसे एक विधि में लपेटा और एक अलग अनुरोध का उपयोग किया:
/**
* Runs a blocking Volley request
*
* @param method get/put/post etc
* @param url endpoint
* @param errorListener handles errors
* @return the input stream result or exception: NOTE returns null once the onErrorResponse listener has been called
*/
public InputStream runInputStreamRequest(int method, String url, Response.ErrorListener errorListener) {
RequestFuture<InputStream> future = RequestFuture.newFuture();
InputStreamRequest request = new InputStreamRequest(method, url, future, errorListener);
getQueue().add(request);
try {
return future.get(REQUEST_TIMEOUT, TimeUnit.SECONDS);
} catch (InterruptedException e) {
Log.e("Retrieve cards api call interrupted.", e);
errorListener.onErrorResponse(new VolleyError(e));
} catch (ExecutionException e) {
Log.e("Retrieve cards api call failed.", e);
errorListener.onErrorResponse(new VolleyError(e));
} catch (TimeoutException e) {
Log.e("Retrieve cards api call timed out.", e);
errorListener.onErrorResponse(new VolleyError(e));
}
return null;
}