Uses of Interface
org.apache.hc.core5.http.io.SessionOutputBuffer
-
Packages that use SessionOutputBuffer 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.io Core HTTP transport APIs based on the classic (blocking) I/O model. -
-
Uses of SessionOutputBuffer in org.apache.hc.core5.http.impl.io
Classes in org.apache.hc.core5.http.impl.io that implement SessionOutputBuffer Modifier and Type Class Description classSessionOutputBufferImplAbstract base class for session output buffers that stream data to an arbitraryOutputStream.Fields in org.apache.hc.core5.http.impl.io declared as SessionOutputBuffer Modifier and Type Field Description private SessionOutputBufferChunkedOutputStream. bufferprivate SessionOutputBufferContentLengthOutputStream. bufferprivate SessionOutputBufferIdentityOutputStream. bufferMethods in org.apache.hc.core5.http.impl.io with parameters of type SessionOutputBuffer Modifier and Type Method Description protected java.io.OutputStreamBHttpConnectionBase. createContentOutputStream(long len, SessionOutputBuffer buffer, java.io.OutputStream outputStream, Supplier<java.util.List<? extends Header>> trailers)voidAbstractMessageWriter. write(T message, SessionOutputBuffer buffer, java.io.OutputStream outputStream)Constructors in org.apache.hc.core5.http.impl.io with parameters of type SessionOutputBuffer Constructor Description ChunkedOutputStream(SessionOutputBuffer buffer, java.io.OutputStream outputStream, byte[] chunkCache, Supplier<java.util.List<? extends Header>> trailerSupplier)Default constructor.ChunkedOutputStream(SessionOutputBuffer buffer, java.io.OutputStream outputStream, int chunkSizeHint)Constructor with no trailers.ChunkedOutputStream(SessionOutputBuffer buffer, java.io.OutputStream outputStream, int chunkSizeHint, Supplier<java.util.List<? extends Header>> trailerSupplier)Constructor taking an integer chunk size hint.ContentLengthOutputStream(SessionOutputBuffer buffer, java.io.OutputStream outputStream, long contentLength)Default constructor.IdentityOutputStream(SessionOutputBuffer buffer, java.io.OutputStream outputStream)Default constructor. -
Uses of SessionOutputBuffer in org.apache.hc.core5.http.io
Methods in org.apache.hc.core5.http.io with parameters of type SessionOutputBuffer Modifier and Type Method Description voidHttpMessageWriter. write(T message, SessionOutputBuffer buffer, java.io.OutputStream outputStream)Serializes an instance ofMessageHeadersto the given output stream.
-