public interface HttpServerRequest extends NettyInbound, HttpInfos
| Modifier and Type | Method and Description |
|---|---|
InetSocketAddress |
hostAddress()
Returns the address of the host peer.
|
String |
param(CharSequence key)
URI parameter captured via {} "/test/{var}"
|
Map<String,String> |
params()
Returns the param captured key/value map
|
HttpServerRequest |
paramsResolver(java.util.function.Function<? super String,Map<String,String>> paramsResolver)
Specifies a params resolver.
|
default Flux<HttpContent> |
receiveContent()
Returns a
Flux of HttpContent containing received chunks |
InetSocketAddress |
remoteAddress()
Returns the address of the remote peer.
|
HttpHeaders |
requestHeaders()
Returns inbound
HttpHeaders |
String |
scheme()
Returns the current protocol scheme
|
HttpServerRequest |
withConnection(java.util.function.Consumer<? super Connection> withConnection)
Calls the passed callback with a
Connection to operate on the
underlying Channel state. |
receive, receiveObjectcookies, fullPath, isKeepAlive, isWebsocket, method, path, uri, versionHttpServerRequest withConnection(java.util.function.Consumer<? super Connection> withConnection)
NettyInboundConnection to operate on the
underlying Channel state. This allows for chaining inbound API.withConnection in interface NettyInboundwithConnection - connection callbackConnection@Nullable String param(CharSequence key)
key - param var name@Nullable Map<String,String> params()
HttpServerRequest paramsResolver(java.util.function.Function<? super String,Map<String,String>> paramsResolver)
paramsResolver - a params resolverHttpServerRequestdefault Flux<HttpContent> receiveContent()
Flux of HttpContent containing received chunksFlux of HttpContent containing received chunksInetSocketAddress hostAddress()
InetSocketAddress remoteAddress()
HttpHeaders requestHeaders()
HttpHeadersHttpHeadersString scheme()