void |
HttpRequest.send(Handler<AsyncResult<HttpResponse<T>>> handler)
Send a request, the handler will receive the response as an HttpResponse .
|
void |
HttpRequest.sendBuffer(Buffer body,
Handler<AsyncResult<HttpResponse<T>>> handler)
|
void |
HttpRequest.sendForm(MultiMap body,
Handler<AsyncResult<HttpResponse<T>>> handler)
|
void |
HttpRequest.sendJson(Object body,
Handler<AsyncResult<HttpResponse<T>>> handler)
|
void |
HttpRequest.sendJsonObject(JsonObject body,
Handler<AsyncResult<HttpResponse<T>>> handler)
|
void |
HttpRequest.sendMultipartForm(MultipartForm body,
Handler<AsyncResult<HttpResponse<T>>> handler)
|
void |
HttpRequest.sendStream(Flowable<Buffer> body,
Handler<AsyncResult<HttpResponse<T>>> handler)
|
void |
HttpRequest.sendStream(Observable<Buffer> body,
Handler<AsyncResult<HttpResponse<T>>> handler)
|
void |
HttpRequest.sendStream(ReadStream<Buffer> body,
Handler<AsyncResult<HttpResponse<T>>> handler)
|