HttpCall<HttpResponse<byte[]>> |
HttpCallResponse.asByteArray() |
Process as response HttpResponse<byte[]>.
|
HttpCall<HttpResponse<Void>> |
HttpCallResponse.asDiscarding() |
Process discarding response body as HttpResponse<Void>.
|
HttpCall<HttpResponse<InputStream>> |
HttpCallResponse.asInputStream() |
Process as response HttpResponse<InputStream>.
|
HttpCall<HttpResponse<Stream<String>>> |
HttpCallResponse.asLines() |
Process as response HttpResponse<Stream<String>>.
|
HttpCall<HttpResponse<String>> |
HttpCallResponse.asString() |
Process as String response body HttpResponse<String>.
|
HttpCall<HttpResponse<Void>> |
HttpCallResponse.asVoid() |
Process the response with check for 200 range status code
returning as HttpResponse<Void>.
|
<E> HttpCall<E> |
HttpCallResponse.bean(Class<E> type) |
A bean response to execute async or sync.
|
<E> HttpCall<List<E>> |
HttpCallResponse.list(Class<E> type) |
Process expecting a list of beans response body (typically from json content).
|
<E> HttpCall<Stream<E>> |
HttpCallResponse.stream(Class<E> type) |
Process expecting a stream of beans response body (typically from json content).
|
<E> HttpCall<HttpResponse<E>> |
HttpCallResponse.withHandler(HttpResponse.BodyHandler<E> bodyHandler) |
Call using any given HttpResponse.BodyHandler .
|