Package | Description |
---|---|
io.vertx.rxjava.core.http | |
io.vertx.rxjava.ext.web |
Modifier and Type | Field and Description |
---|---|
static TypeArg<HttpServerRequest> |
HttpServerRequest.__TYPE_ARG |
Modifier and Type | Method and Description |
---|---|
HttpServerRequest |
HttpServerRequest.bodyHandler(io.vertx.core.Handler<Buffer> bodyHandler)
Convenience method for receiving the entire request body in one piece.
|
HttpServerRequest |
HttpServerRequest.customFrameHandler(io.vertx.core.Handler<HttpFrame> handler)
Set a custom frame handler.
|
HttpServerRequest |
HttpServerRequest.endHandler(io.vertx.core.Handler<Void> endHandler) |
HttpServerRequest |
HttpServerRequest.exceptionHandler(io.vertx.core.Handler<Throwable> handler) |
HttpServerRequest |
HttpServerRequest.fetch(long amount) |
HttpServerRequest |
HttpServerRequest.handler(io.vertx.core.Handler<Buffer> handler) |
static HttpServerRequest |
HttpServerRequest.newInstance(io.vertx.core.http.HttpServerRequest arg) |
HttpServerRequest |
HttpServerRequest.pause() |
HttpServerRequest |
HttpServerRequest.resume() |
HttpServerRequest |
HttpServerRequest.setExpectMultipart(boolean expect)
Call this with true if you are expecting a multi-part body to be submitted in the request.
|
HttpServerRequest |
HttpServerRequest.streamPriorityHandler(io.vertx.core.Handler<io.vertx.core.http.StreamPriority> handler)
Set an handler for stream priority changes
|
HttpServerRequest |
HttpServerRequest.uploadHandler(io.vertx.core.Handler<HttpServerFileUpload> uploadHandler)
Set an upload handler.
|
Modifier and Type | Method and Description |
---|---|
ReadStream<HttpServerRequest> |
HttpServer.requestStream()
Return the request stream for the server.
|
Modifier and Type | Method and Description |
---|---|
HttpServer |
HttpServer.requestHandler(io.vertx.core.Handler<HttpServerRequest> handler)
Set the request handler for the server to
requestHandler . |
Modifier and Type | Method and Description |
---|---|
HttpServerRequest |
RoutingContext.request() |
Modifier and Type | Method and Description |
---|---|
void |
Router.accept(HttpServerRequest request)
Deprecated.
|
void |
Router.handle(HttpServerRequest event)
Something has happened, so handle it.
|
Copyright © 2019 Eclipse. All rights reserved.