Uses of Class
io.netty.channel.embedded.EmbeddedChannel
Packages that use EmbeddedChannel
Package
Description
A virtual
Channel
that helps wrapping a series of handlers to
unit test the handlers or use them in non-I/O context.Encoder, decoder and their related message types for HTTP.
Encoder, decoder, handshakers to handle most common WebSocket Compression Extensions.
Handlers for sending and receiving HTTP/2 frames.
-
Uses of EmbeddedChannel in io.netty.channel.embedded
Methods in io.netty.channel.embedded that return EmbeddedChannelModifier and TypeMethodDescriptionEmbeddedChannel.flushInbound()
Flushes the inbound of thisChannel
.EmbeddedChannel.flushOutbound()
Flushes the outbound of thisChannel
.Constructors in io.netty.channel.embedded with parameters of type EmbeddedChannel -
Uses of EmbeddedChannel in io.netty.handler.codec.http
Fields in io.netty.handler.codec.http declared as EmbeddedChannelModifier and TypeFieldDescriptionprivate final EmbeddedChannel
HttpContentEncoder.Result.contentEncoder
private EmbeddedChannel
HttpContentDecoder.decoder
private EmbeddedChannel
HttpContentEncoder.encoder
Methods in io.netty.handler.codec.http that return EmbeddedChannelModifier and TypeMethodDescriptionHttpContentEncoder.Result.contentEncoder()
protected abstract EmbeddedChannel
HttpContentDecoder.newContentDecoder
(String contentEncoding) Returns a newEmbeddedChannel
that decodes the HTTP message content encoded in the specified contentEncoding.protected EmbeddedChannel
HttpContentDecompressor.newContentDecoder
(String contentEncoding) Constructors in io.netty.handler.codec.http with parameters of type EmbeddedChannelModifierConstructorDescriptionResult
(String targetContentEncoding, EmbeddedChannel contentEncoder) -
Uses of EmbeddedChannel in io.netty.handler.codec.http.websocketx.extensions.compression
Fields in io.netty.handler.codec.http.websocketx.extensions.compression declared as EmbeddedChannelModifier and TypeFieldDescriptionprivate EmbeddedChannel
DeflateDecoder.decoder
private EmbeddedChannel
DeflateEncoder.encoder
-
Uses of EmbeddedChannel in io.netty.handler.codec.http2
Fields in io.netty.handler.codec.http2 declared as EmbeddedChannelModifier and TypeFieldDescriptionprivate final EmbeddedChannel
DelegatingDecompressorFrameListener.Http2Decompressor.decompressor
Methods in io.netty.handler.codec.http2 that return EmbeddedChannelModifier and TypeMethodDescription(package private) EmbeddedChannel
DelegatingDecompressorFrameListener.Http2Decompressor.decompressor()
Responsible for taking compressed bytes in and producing decompressed bytes.private EmbeddedChannel
CompressorHttp2ConnectionEncoder.newCompressionChannel
(ChannelHandlerContext ctx, ZlibWrapper wrapper) Generate a new instance of anEmbeddedChannel
capable of compressing dataprivate EmbeddedChannel
CompressorHttp2ConnectionEncoder.newCompressor
(ChannelHandlerContext ctx, Http2Headers headers, boolean endOfStream) Checks if a new compressor object is needed for the stream identified bystreamId
.protected EmbeddedChannel
CompressorHttp2ConnectionEncoder.newContentCompressor
(ChannelHandlerContext ctx, CharSequence contentEncoding) Returns a newEmbeddedChannel
that encodes the HTTP2 message content encoded in the specifiedcontentEncoding
.protected EmbeddedChannel
DelegatingDecompressorFrameListener.newContentDecompressor
(ChannelHandlerContext ctx, CharSequence contentEncoding) Returns a newEmbeddedChannel
that decodes the HTTP2 message content encoded in the specifiedcontentEncoding
.Methods in io.netty.handler.codec.http2 with parameters of type EmbeddedChannelModifier and TypeMethodDescriptionprivate void
CompressorHttp2ConnectionEncoder.bindCompressorToStream
(EmbeddedChannel compressor, int streamId) Called after the super class has written the headers and created any associated stream objects.(package private) void
CompressorHttp2ConnectionEncoder.cleanup
(Http2Stream stream, EmbeddedChannel compressor) Release remaining content fromEmbeddedChannel
and remove the compressor from theHttp2Stream
.private static ByteBuf
CompressorHttp2ConnectionEncoder.nextReadableBuf
(EmbeddedChannel compressor) private static ByteBuf
DelegatingDecompressorFrameListener.nextReadableBuf
(EmbeddedChannel decompressor) Constructors in io.netty.handler.codec.http2 with parameters of type EmbeddedChannel