Обратите внимание, что ответ @Matthews правильный, НО если вы находитесь в другом потоке и выполняете залп, когда у вас нет Интернета, ваш обратный вызов ошибки будет вызываться в основном потоке, но поток, в котором вы находитесь, будет заблокирован НАВСЕГДА. (Поэтому, если этот поток является IntentService, вы никогда не сможете отправить ему другое сообщение, и ваш сервис будет в основном мертвым).
Используйте версию get()
с тайм-аутом future.get(30, TimeUnit.SECONDS)
и перехватите ошибку, чтобы выйти из потока.
Чтобы соответствовать ответу @Mathews:
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;
}