Package io.vertx.ext.web
Interface WebServerRequest
-
- All Superinterfaces:
HttpServerRequest
,ReadStream<Buffer>
,StreamBase
public interface WebServerRequest extends HttpServerRequest
Extends to access the routing context associated with the request.- Author:
- Florian Bütler
-
-
Field Summary
-
Fields inherited from interface io.vertx.core.http.HttpServerRequest
DEFAULT_INVALID_REQUEST_HANDLER
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RoutingContext
routingContext()
-
Methods inherited from interface io.vertx.core.http.HttpServerRequest
absoluteURI, authority, body, bodyHandler, bytesRead, canUpgradeToWebSocket, connection, cookieCount, cookieMap, cookies, cookies, customFrameHandler, decoderResult, end, endHandler, exceptionHandler, fetch, formAttributes, getCookie, getCookie, getFormAttribute, getHeader, getHeader, getParam, getParam, getParamsCharset, handler, headers, isEnded, isExpectMultipart, isSSL, localAddress, method, params, params, path, pause, query, remoteAddress, response, resume, routed, scheme, setExpectMultipart, setParamsCharset, sslSession, streamId, streamPriority, streamPriorityHandler, toNetSocket, toWebSocket, uploadHandler, uri, version
-
Methods inherited from interface io.vertx.core.streams.ReadStream
collect, pipe, pipeTo
-
-
-
-
Method Detail
-
routingContext
RoutingContext routingContext()
- Returns:
- the Vert.x context associated with this server request
-
-