Uses of Class
io.vertx.core.http.HttpVersion
-
Packages that use HttpVersion Package Description io.vertx.core.http -
-
Uses of HttpVersion in io.vertx.core.http
Fields in io.vertx.core.http declared as HttpVersion Modifier and Type Field Description static HttpVersionHttpClientOptions. DEFAULT_PROTOCOL_VERSIONThe default protocol version = HTTP/1.1Fields in io.vertx.core.http with type parameters of type HttpVersion Modifier and Type Field Description static List<HttpVersion>HttpClientOptions. DEFAULT_ALPN_VERSIONSDefault Application-Layer Protocol Negotiation versions = [] (automatic according to protocol version)static List<HttpVersion>HttpServerOptions. DEFAULT_ALPN_VERSIONSDefault Application-Layer Protocol Negotiation versions = [HTTP/2,HTTP/1.1]Methods in io.vertx.core.http that return HttpVersion Modifier and Type Method Description HttpVersionHttpClientOptions. getProtocolVersion()Get the protocol version.static HttpVersionHttpVersion. valueOf(String name)Returns the enum constant of this type with the specified name.static HttpVersion[]HttpVersion. values()Returns an array containing the constants of this enum type, in the order they are declared.HttpVersionHttpClientRequest. version()HttpVersionHttpResponseHead. version()HttpVersionHttpServerRequest. version()Methods in io.vertx.core.http that return types with arguments of type HttpVersion Modifier and Type Method Description List<HttpVersion>HttpClientOptions. getAlpnVersions()List<HttpVersion>HttpServerOptions. getAlpnVersions()Methods in io.vertx.core.http with parameters of type HttpVersion Modifier and Type Method Description static MultiMapHttpHeaders. headers(HttpVersion version)HttpClientOptionsHttpClientOptions. setProtocolVersion(HttpVersion protocolVersion)Set the protocol version.Method parameters in io.vertx.core.http with type arguments of type HttpVersion Modifier and Type Method Description HttpClientOptionsHttpClientOptions. setAlpnVersions(List<HttpVersion> alpnVersions)Set the list of protocol versions to provide to the server during the Application-Layer Protocol Negotiation.HttpServerOptionsHttpServerOptions. setAlpnVersions(List<HttpVersion> alpnVersions)Set the list of protocol versions to provide to the server during the Application-Layer Protocol Negotiatiation.
-