Uses of Interface
org.apache.hc.core5.http.message.LineParser
-
Packages that use LineParser Package Description 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.http.message Core HTTP message components, message element parser and writer APIs and their default implementations. -
-
Uses of LineParser in org.apache.hc.core5.http.impl.io
Fields in org.apache.hc.core5.http.impl.io declared as LineParser Modifier and Type Field Description private LineParserAbstractMessageParser. lineParserprivate LineParserDefaultHttpRequestParserFactory. lineParserprivate LineParserDefaultHttpResponseParserFactory. lineParserMethods in org.apache.hc.core5.http.impl.io that return LineParser Modifier and Type Method Description (package private) LineParserAbstractMessageParser. getLineParser()Methods in org.apache.hc.core5.http.impl.io with parameters of type LineParser Modifier and Type Method Description static Header[]AbstractMessageParser. parseHeaders(SessionInputBuffer inBuffer, java.io.InputStream inputStream, int maxHeaderCount, int maxLineLen, LineParser lineParser)Parses HTTP headers from the data receiver stream according to the generic format as specified by the HTTP/1.1 protocol specification.static Header[]AbstractMessageParser. parseHeaders(SessionInputBuffer inBuffer, java.io.InputStream inputStream, int maxHeaderCount, int maxLineLen, LineParser parser, java.util.List<CharArrayBuffer> headerLines)Parses HTTP headers from the data receiver stream according to the generic format as specified by the HTTP/1.1 protocol specification.Constructors in org.apache.hc.core5.http.impl.io with parameters of type LineParser Constructor Description AbstractMessageParser(LineParser lineParser, Http1Config http1Config)Creates new instance of AbstractMessageParser.DefaultHttpRequestParser(LineParser lineParser, HttpRequestFactory<ClassicHttpRequest> requestFactory, Http1Config http1Config)Creates new instance of DefaultHttpRequestParser.DefaultHttpRequestParserFactory(LineParser lineParser, HttpRequestFactory<ClassicHttpRequest> requestFactory)DefaultHttpResponseParser(LineParser lineParser, HttpResponseFactory<ClassicHttpResponse> responseFactory, Http1Config http1Config)Creates new instance of DefaultHttpResponseParser.DefaultHttpResponseParserFactory(LineParser lineParser, HttpResponseFactory<ClassicHttpResponse> responseFactory) -
Uses of LineParser in org.apache.hc.core5.http.impl.nio
Fields in org.apache.hc.core5.http.impl.nio declared as LineParser Modifier and Type Field Description private LineParserAbstractMessageParser. lineParserprivate LineParserDefaultHttpRequestParserFactory. lineParserprivate LineParserDefaultHttpResponseParserFactory. lineParserMethods in org.apache.hc.core5.http.impl.nio that return LineParser Modifier and Type Method Description (package private) LineParserAbstractMessageParser. getLineParser()Constructors in org.apache.hc.core5.http.impl.nio with parameters of type LineParser Constructor Description AbstractMessageParser(LineParser lineParser, Http1Config messageConstraints)Creates an instance of AbstractMessageParser.DefaultHttpRequestParser(HttpRequestFactory<T> requestFactory, LineParser parser, Http1Config http1Config)Creates an instance of DefaultHttpRequestParser.DefaultHttpRequestParserFactory(Http1Config http1Config, HttpRequestFactory<HttpRequest> requestFactory, LineParser lineParser)DefaultHttpResponseParser(HttpResponseFactory<T> responseFactory, LineParser parser, Http1Config http1Config)Creates an instance of DefaultHttpResponseParser.DefaultHttpResponseParserFactory(Http1Config http1Config, HttpResponseFactory<HttpResponse> responseFactory, LineParser lineParser) -
Uses of LineParser in org.apache.hc.core5.http.message
Classes in org.apache.hc.core5.http.message that implement LineParser Modifier and Type Class Description classBasicLineParserDefaultLineParserimplementation.classLazyLaxLineParserExtension ofBasicLineParserthat defers parsing of header values.classLazyLineParserExtension ofBasicLineParserthat defers parsing of header values.
-