Package | Description |
---|---|
io.vertx.reactivex.core.http | |
io.vertx.reactivex.core.net |
Modifier and Type | Method and Description |
---|---|
HostAndPort |
ServerWebSocket.authority() |
HostAndPort |
ServerWebSocketHandshake.authority() |
HostAndPort |
HttpServerRequest.authority() |
Modifier and Type | Method and Description |
---|---|
HttpClientRequest |
HttpClientRequest.authority(HostAndPort authority)
Override the request authority, when using HTTP/1.x this overrides the request
host header, when using
HTTP/2 this sets the authority pseudo header. |
Future<HttpServerResponse> |
HttpServerResponse.push(HttpMethod method,
HostAndPort authority,
String path,
MultiMap headers)
Same as
HttpServerResponse.push(io.vertx.core.http.HttpMethod, java.lang.String, java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.core.http.HttpServerResponse>>) but with an handler called when the operation completes |
Modifier and Type | Field and Description |
---|---|
static io.vertx.lang.rx.TypeArg<HostAndPort> |
HostAndPort.__TYPE_ARG |
Modifier and Type | Method and Description |
---|---|
static HostAndPort |
HostAndPort.authority(String host)
Like
authority(java.lang.String, int) without a port, -1 is used instead. |
static HostAndPort |
HostAndPort.authority(String host,
int port)
Create an instance with a valid
host for a valid authority: the host must
match the host rule of rfc3986. |
static HostAndPort |
HostAndPort.create(String host,
int port)
Create an arbitrary instance.
|
static HostAndPort |
HostAndPort.newInstance(HostAndPort arg) |
static HostAndPort |
HostAndPort.parseAuthority(String string,
int schemePort)
Parse an authority HTTP header, that is host [':' port], according to
rfc3986.
|
Copyright © 2024 Eclipse. All rights reserved.