Uses of Interface
org.apache.hc.core5.http.message.LineParser
Packages that use LineParser
Package
Description
Default implementation of HTTP/1.1 transport based on the classic
(blocking) I/O model.
Default implementation of HTTP/1.1 transport based on
the asynchronous (non-blocking) I/O model.
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 LineParserModifier and TypeFieldDescriptionprivate final LineParser
AbstractMessageParser.lineParser
private final LineParser
DefaultHttpRequestParserFactory.lineParser
private final LineParser
DefaultHttpResponseParserFactory.lineParser
Methods in org.apache.hc.core5.http.impl.io that return LineParserModifier and TypeMethodDescription(package private) LineParser
AbstractMessageParser.getLineParser()
Methods in org.apache.hc.core5.http.impl.io with parameters of type LineParserModifier and TypeMethodDescriptionstatic Header[]
AbstractMessageParser.parseHeaders
(SessionInputBuffer inBuffer, 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, InputStream inputStream, int maxHeaderCount, int maxLineLen, LineParser parser, 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 LineParserModifierConstructorDescriptionAbstractMessageParser
(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 LineParserModifier and TypeFieldDescriptionprivate final LineParser
AbstractMessageParser.lineParser
private final LineParser
DefaultHttpRequestParserFactory.lineParser
private final LineParser
DefaultHttpResponseParserFactory.lineParser
Methods in org.apache.hc.core5.http.impl.nio that return LineParserModifier and TypeMethodDescription(package private) LineParser
AbstractMessageParser.getLineParser()
Constructors in org.apache.hc.core5.http.impl.nio with parameters of type LineParserModifierConstructorDescriptionAbstractMessageParser
(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 LineParserModifier and TypeClassDescriptionclass
DefaultLineParser
implementation.class
Extension ofBasicLineParser
that defers parsing of header values.class
Extension ofBasicLineParser
that defers parsing of header values.