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 class
SessionOutputBufferImpl
Abstract 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 SessionOutputBuffer
ChunkedOutputStream. buffer
private SessionOutputBuffer
ContentLengthOutputStream. buffer
private SessionOutputBuffer
IdentityOutputStream. buffer
Methods in org.apache.hc.core5.http.impl.io with parameters of type SessionOutputBuffer Modifier and Type Method Description protected java.io.OutputStream
BHttpConnectionBase. createContentOutputStream(long len, SessionOutputBuffer buffer, java.io.OutputStream outputStream, Supplier<java.util.List<? extends Header>> trailers)
void
AbstractMessageWriter. 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 void
HttpMessageWriter. write(T message, SessionOutputBuffer buffer, java.io.OutputStream outputStream)
Serializes an instance ofMessageHeaders
to the given output stream.
-