Package | Description |
---|---|
io.netty.channel.embedded |
A virtual
Channel that helps wrapping a series of handlers to
unit test the handlers or use them in non-I/O context. |
io.netty.handler.codec.http |
Encoder, decoder and their related message types for HTTP.
|
io.netty.handler.codec.http2 |
Handlers for sending and receiving HTTP/2 frames.
|
Modifier and Type | Method and Description |
---|---|
EmbeddedChannel |
EmbeddedChannel.flushInbound()
Flushes the inbound of this
Channel . |
EmbeddedChannel |
EmbeddedChannel.flushOutbound()
Flushes the outbound of this
Channel . |
Modifier and Type | Method and Description |
---|---|
EmbeddedChannel |
HttpContentEncoder.Result.contentEncoder() |
protected EmbeddedChannel |
HttpContentDecompressor.newContentDecoder(String contentEncoding) |
protected abstract EmbeddedChannel |
HttpContentDecoder.newContentDecoder(String contentEncoding)
Returns a new
EmbeddedChannel that decodes the HTTP message
content encoded in the specified contentEncoding. |
Constructor and Description |
---|
Result(String targetContentEncoding,
EmbeddedChannel contentEncoder) |
Modifier and Type | Method and Description |
---|---|
protected EmbeddedChannel |
CompressorHttp2ConnectionEncoder.newContentCompressor(ChannelHandlerContext ctx,
CharSequence contentEncoding)
Returns a new
EmbeddedChannel that encodes the HTTP2 message content encoded in the specified
contentEncoding . |
protected EmbeddedChannel |
DelegatingDecompressorFrameListener.newContentDecompressor(ChannelHandlerContext ctx,
CharSequence contentEncoding)
Returns a new
EmbeddedChannel that decodes the HTTP2 message content encoded in the specified
contentEncoding . |
Copyright © 2008–2017 The Netty Project. All rights reserved.