Uses of Class
io.netty.channel.embedded.EmbeddedChannel
-
Packages that use EmbeddedChannel Package Description io.netty.channel.embedded A virtualChannelthat 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.http.websocketx.extensions.compression Encoder, decoder, handshakers to handle most common WebSocket Compression Extensions.io.netty.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames. -
-
Uses of EmbeddedChannel in io.netty.channel.embedded
Methods in io.netty.channel.embedded that return EmbeddedChannel Modifier and Type Method Description EmbeddedChannelEmbeddedChannel. flushInbound()Flushes the inbound of thisChannel.EmbeddedChannelEmbeddedChannel. flushOutbound()Flushes the outbound of thisChannel.Constructors in io.netty.channel.embedded with parameters of type EmbeddedChannel Constructor Description EmbeddedChannelPipeline(EmbeddedChannel channel) -
Uses of EmbeddedChannel in io.netty.handler.codec.http
Fields in io.netty.handler.codec.http declared as EmbeddedChannel Modifier and Type Field Description private EmbeddedChannelHttpContentEncoder.Result. contentEncoderprivate EmbeddedChannelHttpContentDecoder. decoderprivate EmbeddedChannelHttpContentEncoder. encoderMethods in io.netty.handler.codec.http that return EmbeddedChannel Modifier and Type Method Description EmbeddedChannelHttpContentEncoder.Result. contentEncoder()protected abstract EmbeddedChannelHttpContentDecoder. newContentDecoder(java.lang.String contentEncoding)Returns a newEmbeddedChannelthat decodes the HTTP message content encoded in the specified contentEncoding.protected EmbeddedChannelHttpContentDecompressor. newContentDecoder(java.lang.String contentEncoding)Constructors in io.netty.handler.codec.http with parameters of type EmbeddedChannel Constructor Description Result(java.lang.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 EmbeddedChannel Modifier and Type Field Description private EmbeddedChannelDeflateDecoder. decoderprivate EmbeddedChannelDeflateEncoder. encoder -
Uses of EmbeddedChannel in io.netty.handler.codec.http2
Fields in io.netty.handler.codec.http2 declared as EmbeddedChannel Modifier and Type Field Description private EmbeddedChannelDelegatingDecompressorFrameListener.Http2Decompressor. decompressorMethods in io.netty.handler.codec.http2 that return EmbeddedChannel Modifier and Type Method Description (package private) EmbeddedChannelDelegatingDecompressorFrameListener.Http2Decompressor. decompressor()Responsible for taking compressed bytes in and producing decompressed bytes.private EmbeddedChannelCompressorHttp2ConnectionEncoder. newCompressionChannel(ChannelHandlerContext ctx, ZlibWrapper wrapper)Generate a new instance of anEmbeddedChannelcapable of compressing dataprivate EmbeddedChannelCompressorHttp2ConnectionEncoder. newCompressor(ChannelHandlerContext ctx, Http2Headers headers, boolean endOfStream)Checks if a new compressor object is needed for the stream identified bystreamId.protected EmbeddedChannelCompressorHttp2ConnectionEncoder. newContentCompressor(ChannelHandlerContext ctx, java.lang.CharSequence contentEncoding)Returns a newEmbeddedChannelthat encodes the HTTP2 message content encoded in the specifiedcontentEncoding.protected EmbeddedChannelDelegatingDecompressorFrameListener. newContentDecompressor(ChannelHandlerContext ctx, java.lang.CharSequence contentEncoding)Returns a newEmbeddedChannelthat decodes the HTTP2 message content encoded in the specifiedcontentEncoding.Methods in io.netty.handler.codec.http2 with parameters of type EmbeddedChannel Modifier and Type Method Description private voidCompressorHttp2ConnectionEncoder. bindCompressorToStream(EmbeddedChannel compressor, int streamId)Called after the super class has written the headers and created any associated stream objects.(package private) voidCompressorHttp2ConnectionEncoder. cleanup(Http2Stream stream, EmbeddedChannel compressor)Release remaining content fromEmbeddedChanneland remove the compressor from theHttp2Stream.private static ByteBufCompressorHttp2ConnectionEncoder. nextReadableBuf(EmbeddedChannel compressor)private static ByteBufDelegatingDecompressorFrameListener. nextReadableBuf(EmbeddedChannel decompressor)Constructors in io.netty.handler.codec.http2 with parameters of type EmbeddedChannel Constructor Description Http2Decompressor(EmbeddedChannel decompressor)
-