Uses of Class
io.vertx.rxjava.core.http.HttpClientRequest
-
Packages that use HttpClientRequest Package Description io.vertx.rxjava.core.http -
-
Uses of HttpClientRequest in io.vertx.rxjava.core.http
Fields in io.vertx.rxjava.core.http with type parameters of type HttpClientRequest Modifier and Type Field Description static TypeArg<HttpClientRequest>
HttpClientRequest. __TYPE_ARG
Methods in io.vertx.rxjava.core.http that return HttpClientRequest Modifier and Type Method Description HttpClientRequest
HttpClientRequest. continueHandler(Handler<Void> handler)
If you send an HTTP request with the headerExpect
set to the value100-continue
and the server responds with an interim HTTP response with a status code of100
and a continue handler has been set using this method, then thehandler
will be called.HttpClientRequest
HttpClientRequest. drainHandler(Handler<Void> handler)
HttpClientRequest
HttpClientRequest. exceptionHandler(Handler<Throwable> handler)
static HttpClientRequest
HttpClientRequest. newInstance(HttpClientRequest arg)
HttpClientRequest
HttpClientRequest. pushHandler(Handler<HttpClientRequest> handler)
Set a push handler for this request.HttpClientRequest
HttpClientRequest. putHeader(CharSequence name, CharSequence value)
LikeputHeader(java.lang.String, java.lang.String)
but using CharSequenceHttpClientRequest
HttpClientRequest. putHeader(CharSequence name, Iterable<CharSequence> values)
LikeputHeader(java.lang.String, java.lang.String)
but using CharSequenceHttpClientRequest
HttpClientRequest. putHeader(String name, Iterable<String> values)
Put an HTTP header with multiple valuesHttpClientRequest
HttpClientRequest. putHeader(String name, String value)
Put an HTTP headerHttpClientRequest
HttpClientResponse. request()
HttpClientRequest
HttpClientRequest. response()
Set a callback for the associatedHttpClientResponse
.HttpClientRequest
HttpClientRequest. response(Handler<AsyncResult<HttpClientResponse>> handler)
Set a callback for the associatedHttpClientResponse
.HttpClientRequest
HttpClientRequest. sendHead()
LikesendHead(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)
but with an handler after headers have been sent.HttpClientRequest
HttpClientRequest. sendHead(Handler<AsyncResult<Void>> completionHandler)
LikesendHead(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)
but with an handler after headers have been sent.HttpClientRequest
HttpClientRequest. setChunked(boolean chunked)
If chunked is true then the request will be set into HTTP chunked modeHttpClientRequest
HttpClientRequest. setFollowRedirects(boolean followRedirects)
Set the request to follow HTTP redirects up toHttpClientOptions
.HttpClientRequest
HttpClientRequest. setHost(String host)
Set the host value of the HTTP/1.1host
header or HTTP/2authority
pseudo headerHttpClientRequest
HttpClientRequest. setMaxRedirects(int maxRedirects)
Set the max number of HTTP redirects this request will follow.HttpClientRequest
HttpClientRequest. setMethod(HttpMethod method)
Set the HTTP method for this request.HttpClientRequest
HttpClientRequest. setPort(int port)
Set the port value of the HTTP/1.1host
header or HTTP/2authority
pseudo headerHttpClientRequest
HttpClientRequest. setStreamPriority(StreamPriority streamPriority)
Sets the priority of the associated stream.HttpClientRequest
HttpClientRequest. setTimeout(long timeoutMs)
Set's the amount of time after which if the request does not return any data within the timeout period anTimeoutException
will be passed to the exception handler (if provided) and the request will be closed.HttpClientRequest
HttpClientRequest. setURI(String uri)
Set the request uri.HttpClientRequest
HttpClientRequest. setWriteQueueMaxSize(int maxSize)
HttpClientRequest
HttpClientRequest. writeCustomFrame(int type, int flags, Buffer payload)
Write an HTTP/2 frame to the request, allowing to extend the HTTP/2 protocol.HttpClientRequest
HttpClientRequest. writeCustomFrame(HttpFrame frame)
LikewriteCustomFrame(int, int, io.vertx.rxjava.core.buffer.Buffer)
but with anHttpFrame
.Methods in io.vertx.rxjava.core.http that return types with arguments of type HttpClientRequest Modifier and Type Method Description rx.Single<HttpClientRequest>
HttpClient. rxRequest(HttpMethod method, int port, String host, String requestURI)
Create an HTTP request to send to the server at thehost
andport
.rx.Single<HttpClientRequest>
HttpClient. rxRequest(HttpMethod method, String requestURI)
Create an HTTP request to send to the server at the default host and port.rx.Single<HttpClientRequest>
HttpClient. rxRequest(HttpMethod method, String host, String requestURI)
Create an HTTP request to send to the server at thehost
and default port.rx.Single<HttpClientRequest>
HttpClient. rxRequest(RequestOptions options)
Create an HTTP request to send to the server.Method parameters in io.vertx.rxjava.core.http with type arguments of type HttpClientRequest Modifier and Type Method Description HttpClientRequest
HttpClientRequest. pushHandler(Handler<HttpClientRequest> handler)
Set a push handler for this request.void
HttpClient. request(HttpMethod method, int port, String host, String requestURI, Handler<AsyncResult<HttpClientRequest>> handler)
Create an HTTP request to send to the server at thehost
andport
.void
HttpClient. request(HttpMethod method, String requestURI, Handler<AsyncResult<HttpClientRequest>> handler)
Create an HTTP request to send to the server at the default host and port.void
HttpClient. request(HttpMethod method, String host, String requestURI, Handler<AsyncResult<HttpClientRequest>> handler)
Create an HTTP request to send to the server at thehost
and default port.void
HttpClient. request(RequestOptions options, Handler<AsyncResult<HttpClientRequest>> handler)
Create an HTTP request to send to the server.
-