Package io.vertx.core.spi.observability
Interface HttpRequest
-
public interface HttpRequest
An HTTP request.- Author:
- Julien Viet
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
absoluteURI()
MultiMap
headers()
int
id()
HttpMethod
method()
SocketAddress
remoteAddress()
String
uri()
-
-
-
Method Detail
-
id
int id()
- Returns:
- the stream id
-
uri
String uri()
- Returns:
- the request URI
-
absoluteURI
String absoluteURI()
- Returns:
- the request absolute URI
-
method
HttpMethod method()
- Returns:
- the request method
-
headers
MultiMap headers()
- Returns:
- the request headers
-
remoteAddress
SocketAddress remoteAddress()
- Returns:
- the request remote peer address
-
-