@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;
}