Nota A resposta do @Matthews está correta, MAS se você estiver em outro segmento e fizer uma chamada de vôlei quando não tiver Internet, seu retorno de erro será chamado no segmento principal, mas o segmento em que você estiver será bloqueado PARA SEMPRE. (Portanto, se esse segmento for um IntentService, você nunca poderá enviar outra mensagem para ele e seu serviço estará basicamente morto).
Use a versão get()
que tem um tempo limite future.get(30, TimeUnit.SECONDS)
e pegue o erro para sair do seu encadeamento.
Para corresponder à resposta de @Mathews:
try {
return future.get(30, TimeUnit.SECONDS);
} catch (InterruptedException e) {
// exception handling
} catch (ExecutionException e) {
// exception handling
} catch (TimeoutException e) {
// exception handling
}
Abaixo, envolvi-o em um método e use uma solicitação diferente:
/**
* 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;
}