Uses of Class
io.netty.handler.codec.MessageToByteEncoder
-
Packages that use MessageToByteEncoder Package Description io.netty.handler.codec Extensible decoder and its common implementations which deal with the packet fragmentation and reassembly issue found in a stream-based transport such as TCP/IP.io.netty.handler.codec.compression io.netty.handler.codec.dns DNS codec.io.netty.handler.codec.haproxy Decodes an HAProxy proxy protocol headerio.netty.handler.codec.http Encoder, decoder and their related message types for HTTP.io.netty.handler.codec.serialization Encoder, decoder and their compatibility stream implementations which transform aSerializable
object into a byte buffer and vice versa.io.netty.handler.codec.socks Encoder, decoder and their related message types for Socks.io.netty.handler.codec.socksx.v4 Encoder, decoder and their related message types for SOCKSv4 protocol.io.netty.handler.codec.socksx.v5 Encoder, decoder and their related message types for SOCKSv5 protocol. -
-
Uses of MessageToByteEncoder in io.netty.handler.codec
Subclasses of MessageToByteEncoder in io.netty.handler.codec Modifier and Type Class Description private class
ByteToMessageCodec.Encoder
Fields in io.netty.handler.codec declared as MessageToByteEncoder Modifier and Type Field Description private MessageToByteEncoder<I>
ByteToMessageCodec. encoder
-
Uses of MessageToByteEncoder in io.netty.handler.codec.compression
Subclasses of MessageToByteEncoder in io.netty.handler.codec.compression Modifier and Type Class Description class
Bzip2Encoder
Compresses aByteBuf
using the Bzip2 algorithm.class
FastLzFrameEncoder
Compresses aByteBuf
using the FastLZ algorithm.class
JdkZlibEncoder
Compresses aByteBuf
using the deflate algorithm.class
JZlibEncoder
Compresses aByteBuf
using the deflate algorithm.class
SnappyFramedEncoder
Deprecated.UseSnappyFrameEncoder
instead.class
SnappyFrameEncoder
Compresses aByteBuf
using the Snappy framing format.class
ZlibEncoder
Compresses aByteBuf
using the deflate algorithm. -
Uses of MessageToByteEncoder in io.netty.handler.codec.dns
Subclasses of MessageToByteEncoder in io.netty.handler.codec.dns Modifier and Type Class Description class
TcpDnsQueryEncoder
-
Uses of MessageToByteEncoder in io.netty.handler.codec.haproxy
Subclasses of MessageToByteEncoder in io.netty.handler.codec.haproxy Modifier and Type Class Description class
HAProxyMessageEncoder
Encodes an HAProxy proxy protocol message -
Uses of MessageToByteEncoder in io.netty.handler.codec.http
Methods in io.netty.handler.codec.http that return MessageToByteEncoder Modifier and Type Method Description MessageToByteEncoder<ByteBuf>
CompressionEncoderFactory. createEncoder()
MessageToByteEncoder<ByteBuf>
HttpContentCompressor.DeflateEncoderFactory. createEncoder()
MessageToByteEncoder<ByteBuf>
HttpContentCompressor.GzipEncoderFactory. createEncoder()
-
Uses of MessageToByteEncoder in io.netty.handler.codec.serialization
Subclasses of MessageToByteEncoder in io.netty.handler.codec.serialization Modifier and Type Class Description class
CompatibleObjectEncoder
Deprecated.This class has been deprecated with no replacement, because serialization can be a security liabilityclass
ObjectEncoder
Deprecated.This class has been deprecated with no replacement, because serialization can be a security liability -
Uses of MessageToByteEncoder in io.netty.handler.codec.socks
Subclasses of MessageToByteEncoder in io.netty.handler.codec.socks Modifier and Type Class Description class
SocksMessageEncoder
Encodes anSocksMessage
into aByteBuf
. -
Uses of MessageToByteEncoder in io.netty.handler.codec.socksx.v4
Subclasses of MessageToByteEncoder in io.netty.handler.codec.socksx.v4 Modifier and Type Class Description class
Socks4ClientEncoder
Encodes aSocks4CommandRequest
into aByteBuf
.class
Socks4ServerEncoder
Encodes aSocks4CommandResponse
into aByteBuf
. -
Uses of MessageToByteEncoder in io.netty.handler.codec.socksx.v5
Subclasses of MessageToByteEncoder in io.netty.handler.codec.socksx.v5 Modifier and Type Class Description class
Socks5ClientEncoder
Encodes a client-sideSocks5Message
into aByteBuf
.class
Socks5ServerEncoder
Encodes a server-sideSocks5Message
into aByteBuf
.
-