Uses of Class
org.apache.hc.core5.http.HttpVersion
-
Packages that use HttpVersion Package Description org.apache.hc.core5.http Core HTTP transport component APIs.org.apache.hc.core5.http.config Core configuration APIs.org.apache.hc.core5.http.impl.io Default implementation of HTTP/1.1 transport based on the classic (blocking) I/O model.org.apache.hc.core5.http.impl.nio Default implementation of HTTP/1.1 transport based on the asynchronous (non-blocking) I/O model.org.apache.hc.core5.http2.impl.nio Default implementation of HTTP/2 transport based on the asynchronous (non-blocking) I/O model. -
-
Uses of HttpVersion in org.apache.hc.core5.http
Fields in org.apache.hc.core5.http declared as HttpVersion Modifier and Type Field Description static HttpVersion[]HttpVersion. ALLAll HTTP versions known to HttpCore.static HttpVersionHttpVersion. DEFAULTHTTP/1.1 is defaultstatic HttpVersionHttpVersion. HTTP_0_9HTTP protocol version 0.9static HttpVersionHttpVersion. HTTP_1_0HTTP protocol version 1.0static HttpVersionHttpVersion. HTTP_1_1HTTP protocol version 1.1static HttpVersionHttpVersion. HTTP_2static HttpVersionHttpVersion. HTTP_2_0HTTP protocol version 2.0Methods in org.apache.hc.core5.http that return HttpVersion Modifier and Type Method Description static HttpVersionHttpVersion. get(int major, int minor)Gets a specific instance or creates a new one. -
Uses of HttpVersion in org.apache.hc.core5.http.config
Fields in org.apache.hc.core5.http.config declared as HttpVersion Modifier and Type Field Description private HttpVersionHttp1Config.Builder. versionprivate HttpVersionHttp1Config. versionMethods in org.apache.hc.core5.http.config that return HttpVersion Modifier and Type Method Description HttpVersionHttp1Config. getVersion()The effective protocol level expressed by the minor version of HTTP/1.x.Methods in org.apache.hc.core5.http.config with parameters of type HttpVersion Modifier and Type Method Description Http1Config.BuilderHttp1Config.Builder. setVersion(HttpVersion version)Sets the effective HTTP/1.x protocol level (as expressed by the minor version).Constructors in org.apache.hc.core5.http.config with parameters of type HttpVersion Constructor Description Http1Config(HttpVersion version, int bufferSize, int chunkSizeHint, Timeout waitForContinueTimeout, int maxLineLength, int maxHeaderCount, int maxEmptyLineCount, int initialWindowSize) -
Uses of HttpVersion in org.apache.hc.core5.http.impl.io
Methods in org.apache.hc.core5.http.impl.io that return HttpVersion Modifier and Type Method Description protected HttpVersionDefaultHttpRequestWriter. protocolVersion(HttpRequest message)Determines the HTTP protocol version to be communicated to the opposite endpoint in the message header.protected HttpVersionDefaultHttpResponseWriter. protocolVersion(HttpResponse message)Determines the HTTP protocol version to be communicated to the opposite endpoint in the message header. -
Uses of HttpVersion in org.apache.hc.core5.http.impl.nio
Methods in org.apache.hc.core5.http.impl.nio that return HttpVersion Modifier and Type Method Description protected HttpVersionDefaultHttpRequestWriter. protocolVersion(T request)Determines the HTTP protocol version to be communicated to the opposite endpoint in the message header.protected HttpVersionDefaultHttpResponseWriter. protocolVersion(T request)Determines the HTTP protocol version to be communicated to the opposite endpoint in the message header. -
Uses of HttpVersion in org.apache.hc.core5.http2.impl.nio
Methods in org.apache.hc.core5.http2.impl.nio with parameters of type HttpVersion Modifier and Type Method Description (package private) voidHttpProtocolNegotiator. startProtocol(HttpVersion httpVersion)
-