package stream
Type Members
- class FixedChunkedStream extends ChunkedInput[ByteBuf]
A
ChunkedInputthat fetches data from anInputStreamchunk by chunk.A
ChunkedInputthat fetches data from anInputStreamchunk by chunk.Please note that the
InputStreaminstance that feeds data intoChunkedStreammust implementInputStream#available()as accurately as possible, rather than using the default implementation. Otherwise,ChunkedStreamwill generate many too small chunks or block unnecessarily often.