Uses of Interface
org.apache.hc.core5.http.io.SessionInputBuffer
Packages that use SessionInputBuffer
Package
Description
Default implementation of HTTP/1.1 transport based on the classic
(blocking) I/O model.
Core HTTP transport APIs based on the classic (blocking) I/O model.
-
Uses of SessionInputBuffer in org.apache.hc.core5.http.impl.io
Classes in org.apache.hc.core5.http.impl.io that implement SessionInputBufferModifier and TypeClassDescriptionclassAbstract base class for session input buffers that stream data from an arbitraryInputStream.Fields in org.apache.hc.core5.http.impl.io declared as SessionInputBufferModifier and TypeFieldDescriptionprivate final SessionInputBufferChunkedInputStream.bufferThe session input bufferprivate final SessionInputBufferContentLengthInputStream.bufferprivate final SessionInputBufferIdentityInputStream.bufferMethods in org.apache.hc.core5.http.impl.io with parameters of type SessionInputBufferModifier and TypeMethodDescriptionprotected InputStreamBHttpConnectionBase.createContentInputStream(long len, SessionInputBuffer buffer, InputStream inputStream) (package private) HttpEntityBHttpConnectionBase.createIncomingEntity(HttpMessage message, SessionInputBuffer inBuffer, InputStream inputStream, long len) AbstractMessageParser.parse(SessionInputBuffer buffer, InputStream inputStream) DefaultHttpRequestParser.parse(SessionInputBuffer buffer, InputStream inputStream) static 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 SessionInputBufferModifierConstructorDescriptionChunkedInputStream(SessionInputBuffer buffer, InputStream inputStream) Wraps session input stream and reads chunk coded input.ChunkedInputStream(SessionInputBuffer buffer, InputStream inputStream, Http1Config http1Config) Default constructor.ContentLengthInputStream(SessionInputBuffer buffer, InputStream inputStream, long contentLength) Default constructor.IdentityInputStream(SessionInputBuffer buffer, InputStream inputStream) Default constructor. -
Uses of SessionInputBuffer in org.apache.hc.core5.http.io
Methods in org.apache.hc.core5.http.io with parameters of type SessionInputBufferModifier and TypeMethodDescriptionHttpMessageParser.parse(SessionInputBuffer buffer, InputStream inputStream) Generates an instance ofMessageHeadersfrom the given input stream..