Not @ Matthews yanıtı doğrudur AMA başka bir iş parçacığında iseniz ve internetiniz olmadığında bir voleybol araması yaparsanız, hata geri aramanız ana iş parçacığında çağrılacaktır, ancak üzerinde bulunduğunuz iş parçacığı sonsuza kadar engellenecektir. (Bu nedenle, bu iş parçacığı bir IntentService ise, ona hiçbir zaman başka bir mesaj gönderemezsiniz ve hizmetiniz temelde ölür).
get()
Zaman aşımı olan sürümünü kullanın ve future.get(30, TimeUnit.SECONDS)
iş parçacığınızdan çıkmak için hatayı yakalayın.
@Mathews cevabıyla eşleşmek için:
try {
return future.get(30, TimeUnit.SECONDS);
} catch (InterruptedException e) {
// exception handling
} catch (ExecutionException e) {
// exception handling
} catch (TimeoutException e) {
// exception handling
}
Aşağıda bir yöntemle paketledim ve farklı bir istek kullanıyorum:
/**
* 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;
}