OutOfMemoryError.请参阅: 说明
| 接口 | 说明 |
|---|---|
| ChunkedInput<B> |
A data stream of indefinite length which is consumed by
ChunkedWriteHandler. |
| 类 | 说明 |
|---|---|
| ChunkedFile |
A
ChunkedInput that fetches data from a file chunk by chunk. |
| ChunkedNioFile |
A
ChunkedInput that fetches data from a file chunk by chunk using
NIO FileChannel. |
| ChunkedNioStream |
A
ChunkedInput that fetches data from a ReadableByteChannel
chunk by chunk. |
| ChunkedStream |
A
ChunkedInput that fetches data from an InputStream chunk by
chunk. |
| ChunkedWriteHandler |
A
ChannelHandler that adds support for writing a large data stream
asynchronously neither spending a lot of memory nor getting
OutOfMemoryError. |
OutOfMemoryError. For a detailed
example, please refer to io.netty.example.http.file.