java.util.concurrent.CompletableFuture<HttpResponse<byte[]>> |
BaseRequest.asBytesAsync(Callback<byte[]> callback) |
|
java.util.concurrent.CompletableFuture<HttpResponse<byte[]>> |
HttpRequest.asBytesAsync(Callback<byte[]> callback) |
Executes the request asynchronously and returns the response with the body mapped into a byte[]
|
java.util.concurrent.CompletableFuture<HttpResponse<Empty>> |
BaseRequest.asEmptyAsync(Callback<Empty> callback) |
|
java.util.concurrent.CompletableFuture<HttpResponse<Empty>> |
HttpRequest.asEmptyAsync(Callback<Empty> callback) |
Executes the request asynchronously and returns a empty response which is passed to a callback
|
java.util.concurrent.CompletableFuture<HttpResponse<java.io.File>> |
BaseRequest.asFileAsync(java.lang.String path,
Callback<java.io.File> callback,
java.nio.file.CopyOption... copyOptions) |
|
java.util.concurrent.CompletableFuture<HttpResponse<java.io.File>> |
HttpRequest.asFileAsync(java.lang.String path,
Callback<java.io.File> callback,
java.nio.file.CopyOption... copyOptions) |
asynchronously executes the request and writes the contents into a file
|
java.util.concurrent.CompletableFuture<HttpResponse<JsonNode>> |
BaseRequest.asJsonAsync(Callback<JsonNode> callback) |
|
java.util.concurrent.CompletableFuture<HttpResponse<JsonNode>> |
HttpRequest.asJsonAsync(Callback<JsonNode> callback) |
Executes the request asynchronously and returns the response with the body mapped into a JsonNode
|
<T> java.util.concurrent.CompletableFuture<HttpResponse<T>> |
BaseRequest.asObjectAsync(java.lang.Class<? extends T> responseClass,
Callback<T> callback) |
|
<T> java.util.concurrent.CompletableFuture<HttpResponse<T>> |
BaseRequest.asObjectAsync(GenericType<T> genericType,
Callback<T> callback) |
|
<T> java.util.concurrent.CompletableFuture<HttpResponse<T>> |
HttpRequest.asObjectAsync(java.lang.Class<? extends T> responseClass,
Callback<T> callback) |
Executes the request asynchronously, mapping to a type via the configured object mapper and then passed to a callback handler.
|
<T> java.util.concurrent.CompletableFuture<HttpResponse<T>> |
HttpRequest.asObjectAsync(GenericType<T> genericType,
Callback<T> callback) |
Executes the request asynchronously, and use a GenericType with the ObjectMapper
|
java.util.concurrent.CompletableFuture<HttpResponse<java.lang.String>> |
BaseRequest.asStringAsync(Callback<java.lang.String> callback) |
|
java.util.concurrent.CompletableFuture<HttpResponse<java.lang.String>> |
HttpRequest.asStringAsync(Callback<java.lang.String> callback) |
Executes the request asynchronously and returns the response with the body mapped into a String
|
(package private) static <T> java.util.concurrent.CompletableFuture<HttpResponse<T>> |
CallbackFuture.wrap(Callback<T> source) |
|