Package reactor.netty.http.server
Interface HttpServerInfos
- All Superinterfaces:
ConnectionInformation
,HttpInfos
- All Known Subinterfaces:
HttpServerRequest
,HttpServerResponse
An Http Reactive Channel with several accessors related to HTTP flow: headers, params,
URI, method, websocket...
- Since:
- 1.0.8
- Author:
- Violeta Georgieva
-
Method Summary
Modifier and TypeMethodDescriptionReturns resolved HTTP cookies.Methods inherited from interface reactor.netty.http.server.ConnectionInformation
connectionHostAddress, connectionRemoteAddress, connectionScheme, hostAddress, hostName, hostPort, remoteAddress, scheme
Methods inherited from interface reactor.netty.http.HttpInfos
cookies, fullPath, isKeepAlive, isWebsocket, method, path, requestId, uri, version
-
Method Details
-
allCookies
Map<CharSequence,List<Cookie>> allCookies()Returns resolved HTTP cookies. As opposed toHttpInfos.cookies()
, this returns all cookies, even if they have the same name.- Returns:
- Resolved HTTP cookies
-