Future<HttpResponse<T>> |
HttpRequest.send() |
Send a request, the handler will receive the response as an HttpResponse .
|
Future<HttpResponse<T>> |
HttpRequest.sendBuffer(Buffer body) |
|
Future<HttpResponse<T>> |
HttpRequest.sendForm(MultiMap body) |
Like HttpRequest.send() but with an HTTP request body multimap encoded as form and the content type
set to application/x-www-form-urlencoded .
|
Future<HttpResponse<T>> |
HttpRequest.sendForm(MultiMap body,
String charset) |
Like HttpRequest.send() but with an HTTP request body multimap encoded as form and the content type
set to application/x-www-form-urlencoded .
|
Future<HttpResponse<T>> |
HttpRequest.sendJson(Object body) |
Like HttpRequest.send() but with an HTTP request body object encoded as json and the content type
set to application/json .
|
Future<HttpResponse<T>> |
HttpRequest.sendJsonObject(JsonObject body) |
Like HttpRequest.send() but with an HTTP request body object encoded as json and the content type
set to application/json .
|
Future<HttpResponse<T>> |
HttpRequest.sendMultipartForm(MultipartForm body) |
Like HttpRequest.send() but with an HTTP request body multimap encoded as form and the content type
set to multipart/form-data .
|
Future<HttpResponse<T>> |
HttpRequest.sendStream(ReadStream<Buffer> body) |
|