Uses of Interface
org.apache.http.io.BufferInfo
-
Packages that use BufferInfo Package Description org.apache.http.impl.io Default implementations of message parses and writers for synchronous, blocking communication.org.apache.http.impl.nio.codecs Default implementations of message parses and writers for asynchronous, even driven communication.org.apache.http.impl.nio.reactor Default implementation of event driven network communication APIs based on Java NIO.org.apache.http.nio.util Core utility classes for asynchronous, event driven communication. -
-
Uses of BufferInfo in org.apache.http.impl.io
Classes in org.apache.http.impl.io that implement BufferInfo Modifier and Type Class Description class
AbstractSessionInputBuffer
Deprecated.(4.3) useSessionInputBufferImpl
class
AbstractSessionOutputBuffer
Deprecated.(4.3) useSessionOutputBufferImpl
class
SessionInputBufferImpl
Abstract base class for session input buffers that stream data from an arbitraryInputStream
.class
SessionOutputBufferImpl
Abstract base class for session output buffers that stream data to an arbitraryOutputStream
.class
SocketInputBuffer
Deprecated.(4.3) useSessionInputBufferImpl
class
SocketOutputBuffer
Deprecated.(4.3) useSessionOutputBufferImpl
-
Uses of BufferInfo in org.apache.http.impl.nio.codecs
Fields in org.apache.http.impl.nio.codecs declared as BufferInfo Modifier and Type Field Description private BufferInfo
ChunkEncoder. bufferinfo
-
Uses of BufferInfo in org.apache.http.impl.nio.reactor
Classes in org.apache.http.impl.nio.reactor that implement BufferInfo Modifier and Type Class Description class
SessionInputBufferImpl
Default implementation ofSessionInputBuffer
based on theExpandableBuffer
class.class
SessionOutputBufferImpl
Default implementation ofSessionOutputBuffer
based on theExpandableBuffer
class. -
Uses of BufferInfo in org.apache.http.nio.util
Classes in org.apache.http.nio.util that implement BufferInfo Modifier and Type Class Description class
ExpandableBuffer
A buffer that expand its capacity on demand usingByteBufferAllocator
interface.class
SharedInputBuffer
Implementation of theContentInputBuffer
interface that can be shared by multiple threads, usually the I/O dispatch of an I/O reactor and a worker thread.class
SharedOutputBuffer
Implementation of theContentOutputBuffer
interface that can be shared by multiple threads, usually the I/O dispatch of an I/O reactor and a worker thread.class
SimpleInputBuffer
Basic implementation of theContentInputBuffer
interface.class
SimpleOutputBuffer
Basic implementation of theContentOutputBuffer
interface.
-