Single<HttpResponse<T>> | 
HttpRequest.rxSend() | 
Send a request, the  handler will receive the response as an  HttpResponse.  
 | 
Single<HttpResponse<T>> | 
HttpRequest.rxSendBuffer(Buffer body) | 
 | 
Single<HttpResponse<T>> | 
HttpRequest.rxSendForm(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.  
 | 
Single<HttpResponse<T>> | 
HttpRequest.rxSendForm(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.  
 | 
Single<HttpResponse<T>> | 
HttpRequest.rxSendJson(Object body) | 
Like  HttpRequest.send() but with an HTTP request  body object encoded as json and the content type
 set to  application/json.  
 | 
Single<HttpResponse<T>> | 
HttpRequest.rxSendJsonObject(JsonObject body) | 
Like  HttpRequest.send() but with an HTTP request  body object encoded as json and the content type
 set to  application/json.  
 | 
Single<HttpResponse<T>> | 
HttpRequest.rxSendMultipartForm(MultipartForm body) | 
Like  HttpRequest.send() but with an HTTP request  body multimap encoded as form and the content type
 set to  multipart/form-data.  
 | 
Single<HttpResponse<T>> | 
HttpRequest.rxSendStream(Flowable<Buffer> body) | 
 | 
Single<HttpResponse<T>> | 
HttpRequest.rxSendStream(ReadStream<Buffer> body) | 
 | 
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(Flowable<Buffer> body) | 
 | 
Future<HttpResponse<T>> | 
HttpRequest.sendStream(ReadStream<Buffer> body) | 
 |