Uses of Class
io.netty.channel.ChannelOutboundHandlerAdapter
-
Packages that use ChannelOutboundHandlerAdapter Package Description io.netty.handler.address Package to dynamically replace local / remoteSocketAddress
.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.base64 io.netty.handler.codec.bytes Encoder and decoder which transform an array of bytes into aByteBuf
and vice versa.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.http.websocketx Encoder, decoder, handshakers and their related message types for Web Socket data frames.io.netty.handler.codec.http.websocketx.extensions Encoder, decoder, handshakers to handle WebSocket Extensions.io.netty.handler.codec.marshalling Decoder and Encoder which uses JBoss Marshalling.io.netty.handler.codec.memcache Common superset of ascii and binary classes.io.netty.handler.codec.memcache.binary Implementations and Interfaces for the Memcache Binary protocol.io.netty.handler.codec.mqtt Encoder, decoder and different Message Types for MQTT.io.netty.handler.codec.protobuf Encoder and decoder which transform a Google Protocol BuffersMessage
andMessageNano
into aByteBuf
and vice versa.io.netty.handler.codec.redis Encoder, decoder for Redis.io.netty.handler.codec.rtsp An RTSP extension based on the HTTP codec.io.netty.handler.codec.sctp Decoder and encoders to manage message completion and multi-streaming codec in SCTP/IP.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.smtp SMTP codec.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.io.netty.handler.codec.spdy Encoder, decoder, session handler and their related message types for the SPDY protocol.io.netty.handler.codec.stomp STOMP codecio.netty.handler.codec.string Encoder and decoder which transform aString
into aByteBuf
and vice versa.io.netty.handler.timeout Adds support for read and write timeout and idle connection notification using aTimer
. -
-
Uses of ChannelOutboundHandlerAdapter in io.netty.handler.address
Subclasses of ChannelOutboundHandlerAdapter in io.netty.handler.address Modifier and Type Class Description class
DynamicAddressConnectHandler
ChannelOutboundHandler
implementation which allows to dynamically replace the usedremoteAddress
and / orlocalAddress
when making a connection attempt.class
ResolveAddressHandler
ChannelOutboundHandlerAdapter
which will resolve theSocketAddress
that is passed toResolveAddressHandler.connect(ChannelHandlerContext, SocketAddress, SocketAddress, ChannelPromise)
if it is not already resolved and theAddressResolver
supports the type ofSocketAddress
. -
Uses of ChannelOutboundHandlerAdapter in io.netty.handler.codec
Subclasses of ChannelOutboundHandlerAdapter in io.netty.handler.codec Modifier and Type Class Description class
DatagramPacketEncoder<M>
An encoder that encodes the content inAddressedEnvelope
toDatagramPacket
using the specified message encoder.class
LengthFieldPrepender
An encoder that prepends the length of the message.class
MessageToByteEncoder<I>
ChannelOutboundHandlerAdapter
which encodes message in a stream-like fashion from one message to anByteBuf
.class
MessageToMessageEncoder<I>
ChannelOutboundHandlerAdapter
which encodes from one message to an other message For example here is an implementation which decodes anInteger
to anString
. -
Uses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.base64
Subclasses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.base64 Modifier and Type Class Description class
Base64Encoder
-
Uses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.bytes
Subclasses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.bytes Modifier and Type Class Description class
ByteArrayEncoder
Encodes the requested array of bytes into aByteBuf
. -
Uses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.compression
Subclasses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.compression Modifier and Type Class Description class
BrotliEncoder
Compress aByteBuf
with the Brotli compression.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
Lz4FrameEncoder
Compresses aByteBuf
using the LZ4 format.class
LzfEncoder
Compresses aByteBuf
using the LZF format.class
LzmaFrameEncoder
Compresses aByteBuf
using the LZMA algorithm.class
SnappyFramedEncoder
Deprecated.UseSnappyFrameEncoder
instead.class
SnappyFrameEncoder
Compresses aByteBuf
using the Snappy framing format.class
ZlibEncoder
Compresses aByteBuf
using the deflate algorithm.class
ZstdEncoder
Compresses aByteBuf
using the Zstandard algorithm. -
Uses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.dns
Subclasses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.dns Modifier and Type Class Description class
DatagramDnsQueryEncoder
class
DatagramDnsResponseEncoder
class
TcpDnsQueryEncoder
class
TcpDnsResponseEncoder
-
Uses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.haproxy
Subclasses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.haproxy Modifier and Type Class Description class
HAProxyMessageEncoder
Encodes an HAProxy proxy protocol message -
Uses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.http
Subclasses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.http Modifier and Type Class Description class
HttpObjectEncoder<H extends HttpMessage>
class
HttpRequestEncoder
class
HttpResponseEncoder
-
Uses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.http.websocketx
Subclasses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.http.websocketx Modifier and Type Class Description class
WebSocket00FrameEncoder
Encodes aWebSocketFrame
into aByteBuf
.class
WebSocket07FrameEncoder
Encodes a web socket frame into wire protocol version 7 format.class
WebSocket08FrameEncoder
Encodes a web socket frame into wire protocol version 8 format.class
WebSocket13FrameEncoder
Encodes a web socket frame into wire protocol version 13 format. -
Uses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.http.websocketx.extensions
Subclasses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.http.websocketx.extensions Modifier and Type Class Description class
WebSocketExtensionEncoder
Convenient class for io.netty.handler.codec.http.websocketx.extensions.WebSocketExtension encoder. -
Uses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.marshalling
Subclasses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.marshalling Modifier and Type Class Description class
CompatibleMarshallingEncoder
MessageToByteEncoder
implementation which uses JBoss Marshalling to marshal an Object.class
MarshallingEncoder
MessageToByteEncoder
implementation which uses JBoss Marshalling to marshal an Object. -
Uses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.memcache
Subclasses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.memcache Modifier and Type Class Description class
AbstractMemcacheObjectEncoder<M extends MemcacheMessage>
A general purposeAbstractMemcacheObjectEncoder
that encodesMemcacheMessage
s. -
Uses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.memcache.binary
Subclasses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.memcache.binary Modifier and Type Class Description class
AbstractBinaryMemcacheEncoder<M extends BinaryMemcacheMessage>
AMessageToByteEncoder
that encodes binary memcache messages into bytes.class
BinaryMemcacheRequestEncoder
The encoder part which takes care of encoding the request headers.class
BinaryMemcacheResponseEncoder
The encoder which takes care of encoding the response headers. -
Uses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.mqtt
Subclasses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.mqtt Modifier and Type Class Description class
MqttEncoder
-
Uses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.protobuf
Subclasses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.protobuf Modifier and Type Class Description class
ProtobufEncoder
class
ProtobufEncoderNano
class
ProtobufVarint32LengthFieldPrepender
An encoder that prepends the Google Protocol Buffers Base 128 Varints integer length field. -
Uses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.redis
Subclasses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.redis Modifier and Type Class Description class
RedisEncoder
EncodesRedisMessage
into bytes following RESP (REdis Serialization Protocol). -
Uses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.rtsp
Subclasses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.rtsp Modifier and Type Class Description class
RtspEncoder
class
RtspObjectEncoder<H extends HttpMessage>
Deprecated.UseRtspEncoder
instead.class
RtspRequestEncoder
Deprecated.UseRtspEncoder
directly insteadclass
RtspResponseEncoder
Deprecated.UseRtspEncoder
directly instead -
Uses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.sctp
Subclasses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.sctp Modifier and Type Class Description class
SctpOutboundByteStreamHandler
A ChannelHandler which transformByteBuf
toSctpMessage
and send it through a specific stream with given protocol identifier. -
Uses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.serialization
Subclasses of ChannelOutboundHandlerAdapter 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 ChannelOutboundHandlerAdapter in io.netty.handler.codec.smtp
Subclasses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.smtp Modifier and Type Class Description class
SmtpRequestEncoder
Encoder for SMTP requests. -
Uses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.socks
Subclasses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.socks Modifier and Type Class Description class
SocksMessageEncoder
Encodes anSocksMessage
into aByteBuf
. -
Uses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.socksx.v4
Subclasses of ChannelOutboundHandlerAdapter 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 ChannelOutboundHandlerAdapter in io.netty.handler.codec.socksx.v5
Subclasses of ChannelOutboundHandlerAdapter 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
. -
Uses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.spdy
Subclasses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.spdy Modifier and Type Class Description class
SpdyHttpEncoder
EncodesHttpRequest
s,HttpResponse
s, andHttpContent
s intoSpdySynStreamFrame
s andSpdySynReplyFrame
s. -
Uses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.stomp
Subclasses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.stomp Modifier and Type Class Description class
StompSubframeEncoder
-
Uses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.string
Subclasses of ChannelOutboundHandlerAdapter in io.netty.handler.codec.string Modifier and Type Class Description class
LineEncoder
Apply a line separator to the requestedString
and encode it into aByteBuf
.class
StringEncoder
Encodes the requestedString
into aByteBuf
. -
Uses of ChannelOutboundHandlerAdapter in io.netty.handler.timeout
Subclasses of ChannelOutboundHandlerAdapter in io.netty.handler.timeout Modifier and Type Class Description class
WriteTimeoutHandler
Raises aWriteTimeoutException
when a write operation cannot finish in a certain period of time.
-