Package | Description |
---|---|
io.netty.handler.codec.http |
Encoder, decoder and their related message types for HTTP.
|
io.netty.handler.codec.http.multipart |
HTTP multipart support.
|
io.netty.handler.codec.http.websocketx |
Encoder, decoder, handshakers and their related message types for
Web Socket data frames.
|
io.netty.handler.stream |
Writes very large data stream asynchronously neither spending a lot of
memory nor getting
OutOfMemoryError . |
Modifier and Type | Class and Description |
---|---|
class |
HttpChunkedInput
A
ChunkedInput that fetches data chunk by chunk for use with HTTP chunked transfers. |
Constructor and Description |
---|
HttpChunkedInput(ChunkedInput<ByteBuf> input)
Creates a new instance using the specified input.
|
HttpChunkedInput(ChunkedInput<ByteBuf> input,
LastHttpContent lastHttpContent)
Creates a new instance using the specified input.
|
Modifier and Type | Class and Description |
---|---|
class |
HttpPostRequestEncoder
This encoder will help to encode Request for a FORM as POST.
|
Modifier and Type | Class and Description |
---|---|
class |
WebSocketChunkedInput
A
ChunkedInput that fetches data chunk by chunk for use with WebSocket chunked transfers. |
Constructor and Description |
---|
WebSocketChunkedInput(ChunkedInput<ByteBuf> input)
Creates a new instance using the specified input.
|
WebSocketChunkedInput(ChunkedInput<ByteBuf> input,
int rsv)
Creates a new instance using the specified input.
|
Modifier and Type | Class and Description |
---|---|
class |
ChunkedFile
A
ChunkedInput that fetches data from a file chunk by chunk. |
class |
ChunkedNioFile
A
ChunkedInput that fetches data from a file chunk by chunk using
NIO FileChannel . |
class |
ChunkedNioStream
A
ChunkedInput that fetches data from a ReadableByteChannel
chunk by chunk. |
class |
ChunkedStream
A
ChunkedInput that fetches data from an InputStream chunk by
chunk. |
Copyright © 2008–2017 The Netty Project. All rights reserved.