Uses of Package
io.netty5.channel
-
Packages that use io.netty5.channel Package Description io.netty5.bootstrap The helper classes with fluent API which enable an easy implementation of typical client side and server side channel initialization.io.netty5.channel The core channel API which is asynchronous and event-driven abstraction of various transports such as a NIO Channel.io.netty5.channel.embedded A virtualChannel
that helps wrapping a series of handlers to unit test the handlers or use them in non-I/O context.io.netty5.channel.epoll Optimized transport for linux which uses EPOLL Edge-Triggered Mode for maximal performance.io.netty5.channel.group A channel registry which helps a user maintain the list of openChannel
s and perform bulk operations on them.io.netty5.channel.internal Internal utilities for channel implementations.io.netty5.channel.kqueue BSD specific transport.io.netty5.channel.local A virtual transport that enables the communication between the two parties in the same virtual machine.io.netty5.channel.nio NIO-based channel API implementation - recommended for a large number of connections (>= 1000).io.netty5.channel.socket Abstract TCP and UDP socket interfaces which extend the core channel API.io.netty5.channel.socket.nio NIO-based socket channel API implementation - recommended for a large number of connections (>= 1000).io.netty5.channel.unix Unix specific transport.io.netty5.handler.address Package to dynamically replace local / remoteSocketAddress
.io.netty5.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.netty5.handler.codec.base64 io.netty5.handler.codec.bytes Encoder and decoder which transform an array of bytes into aio.netty5.buffer.ByteBuf
and vice versa.io.netty5.handler.codec.compression io.netty5.handler.codec.dns DNS codec.io.netty5.handler.codec.http Encoder, decoder and their related message types for HTTP.io.netty5.handler.codec.http.cors This package contains Cross Origin Resource Sharing (CORS) related classes.io.netty5.handler.codec.http.websocketx Encoder, decoder, handshakers and their related message types for Web Socket data frames.io.netty5.handler.codec.http.websocketx.extensions Encoder, decoder, handshakers to handle WebSocket Extensions.io.netty5.handler.codec.http.websocketx.extensions.compression Encoder, decoder, handshakers to handle most common WebSocket Compression Extensions.io.netty5.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames.io.netty5.handler.codec.rtsp An RTSP extension based on the HTTP codec.io.netty5.handler.codec.string Encoder and decoder which transform aString
into aio.netty5.buffer.ByteBuf
and vice versa.io.netty5.handler.flow Package to control the flow of messages.io.netty5.handler.flush Package to control flush behavior.io.netty5.handler.ipfilter Package to filter IP addresses (allow/deny).io.netty5.handler.logging Logs the I/O events for debugging purpose.io.netty5.handler.ssl io.netty5.handler.ssl.ocsp OCSP stapling, formally known as the TLS Certificate Status Request extension, is an alternative approach to the Online Certificate Status Protocol (OCSP) for checking the revocation status of X.509 digital certificates.io.netty5.handler.stream Writes very large data stream asynchronously neither spending a lot of memory nor gettingOutOfMemoryError
.io.netty5.handler.timeout Adds support for read and write timeout and idle connection notification using aTimer
.io.netty5.handler.traffic Implementation of a Traffic Shaping Handler and Dynamic Statistics.io.netty5.resolver.dns An alternative to Java's built-in domain name lookup mechanism that resolves a domain name asynchronously, which supports the queries of an arbitrary DNS record type as well. -
Classes in io.netty5.channel used by io.netty5.bootstrap Class Description Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelFactory Creates a newChannel
.ChannelHandler Handles an I/O event or intercepts an I/O operation, and forwards it to its next handler in itsChannelPipeline
.ChannelOption AChannelOption
allows to configure aChannel
in a type-safe way.EventLoopGroup SpecialEventExecutorGroup
which allows registeringIoHandle
s that get processed for later selection during the event loop.ServerChannel ServerChannelFactory Creates a newServerChannel
. -
Classes in io.netty5.channel used by io.netty5.channel Class Description AbstractChannel A skeletalChannel
implementation.AbstractCoalescingBufferQueue AdaptiveRecvBufferAllocator TheRecvBufferAllocator
that automatically increases and decreases the predicted buffer size on feed back.AddressedEnvelope A message that wraps another message with a sender address and a recipient address.BufferAddressedEnvelope Base class for addressed envelopes that haveBuffer
instances as messages.Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelException ARuntimeException
which is thrown when an I/O operation fails.ChannelFactory Creates a newChannel
.ChannelHandler Handles an I/O event or intercepts an I/O operation, and forwards it to its next handler in itsChannelPipeline
.ChannelHandlerAdapter Skeleton implementation of aChannelHandler
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelId Represents the globally unique identifier of aChannel
.ChannelInboundInvoker ChannelMetadata Represents the properties of aChannel
implementation.ChannelOption AChannelOption
allows to configure aChannel
in a type-safe way.ChannelOutboundBuffer (Transport implementors only) an internal data structure used byAbstractChannel
to store its pending outbound write requests.ChannelOutboundBuffer.MessageProcessor ChannelOutboundInvoker ChannelPipeline A list ofChannelHandler
s which handles or intercepts inbound events and outbound operations of aChannel
.ChannelShutdownDirection The direction of a shutdown.DefaultAddressedEnvelope The defaultAddressedEnvelope
implementation.DefaultBufferAddressedEnvelope The defaultAddressedEnvelope
implementation forBuffer
messages.DefaultChannelId The defaultChannelId
implementation.DefaultChannelPipeline The defaultChannelPipeline
implementation.DefaultFileRegion DefaultMaxBytesRecvBufferAllocator TheRecvBufferAllocator
that yields a buffer size prediction based upon decrementing the value from the max bytes per read.DefaultMaxMessagesRecvBufferAllocator Default implementation ofMaxMessagesRecvBufferAllocator
which respectsChannelOption.AUTO_READ
and also prevents overflow.EventLoop Will handle all the I/O operations for aIoHandle
once registered.EventLoopGroup SpecialEventExecutorGroup
which allows registeringIoHandle
s that get processed for later selection during the event loop.FileRegion A region of a file that is sent via aChannel
which supports zero-copy file transfer.IoExecutionContext The execution context for anIoHandler
.IoHandle A handle that will process I/O.IoHandler Handles IO dispatching for anEventLoop
All operations exceptIoHandler.wakeup(boolean)
andIoHandler.isCompatible(Class)
MUST be executed on theEventLoop
thread and should never be called from the user-directly.IoHandlerFactory Factory forIoHandler
instances.MaxBytesRecvBufferAllocator RecvBufferAllocator
that limits a read operation based upon a maximum value per individual read and a maximum amount when a read operation is attempted by the event loop.MaxMessagesRecvBufferAllocator RecvBufferAllocator
that limits the number of read operations that will be attempted when a read operation is attempted by the event loop.MessageSizeEstimator Responsible to estimate the size of a message.MessageSizeEstimator.Handle RecvBufferAllocator Allocates a new receive buffer whose capacity is probably large enough to read all inbound data and small enough not to waste its space.RecvBufferAllocator.Handle SelectStrategy Select strategy interface.SelectStrategyFactory Factory that creates a newSelectStrategy
every time.ServerChannel ServerChannelFactory Creates a newServerChannel
.WriteBufferWaterMark WriteBufferWaterMark
is used to set low water mark and high water mark for the write buffer. -
Classes in io.netty5.channel used by io.netty5.channel.embedded Class Description AbstractChannel A skeletalChannel
implementation.Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelHandler Handles an I/O event or intercepts an I/O operation, and forwards it to its next handler in itsChannelPipeline
.ChannelId Represents the globally unique identifier of aChannel
.ChannelOutboundBuffer (Transport implementors only) an internal data structure used byAbstractChannel
to store its pending outbound write requests.ChannelOutboundInvoker ChannelShutdownDirection The direction of a shutdown.DefaultChannelPipeline The defaultChannelPipeline
implementation.IoHandle A handle that will process I/O. -
Classes in io.netty5.channel used by io.netty5.channel.epoll Class Description AbstractChannel A skeletalChannel
implementation.Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelOption AChannelOption
allows to configure aChannel
in a type-safe way.ChannelOutboundBuffer (Transport implementors only) an internal data structure used byAbstractChannel
to store its pending outbound write requests.ChannelOutboundInvoker ChannelShutdownDirection The direction of a shutdown.EventLoop Will handle all the I/O operations for aIoHandle
once registered.EventLoopGroup SpecialEventExecutorGroup
which allows registeringIoHandle
s that get processed for later selection during the event loop.IoExecutionContext The execution context for anIoHandler
.IoHandle A handle that will process I/O.IoHandler Handles IO dispatching for anEventLoop
All operations exceptIoHandler.wakeup(boolean)
andIoHandler.isCompatible(Class)
MUST be executed on theEventLoop
thread and should never be called from the user-directly.IoHandlerFactory Factory forIoHandler
instances.RecvBufferAllocator.Handle SelectStrategyFactory Factory that creates a newSelectStrategy
every time.ServerChannel -
Classes in io.netty5.channel used by io.netty5.channel.group Class Description Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelException ARuntimeException
which is thrown when an I/O operation fails.ChannelId Represents the globally unique identifier of aChannel
. -
Classes in io.netty5.channel used by io.netty5.channel.internal Class Description Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelHandler Handles an I/O event or intercepts an I/O operation, and forwards it to its next handler in itsChannelPipeline
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelInboundInvoker ChannelOutboundInvoker ChannelPipeline A list ofChannelHandler
s which handles or intercepts inbound events and outbound operations of aChannel
.ChannelShutdownDirection The direction of a shutdown. -
Classes in io.netty5.channel used by io.netty5.channel.kqueue Class Description AbstractChannel A skeletalChannel
implementation.Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelOption AChannelOption
allows to configure aChannel
in a type-safe way.ChannelOutboundBuffer (Transport implementors only) an internal data structure used byAbstractChannel
to store its pending outbound write requests.ChannelOutboundInvoker ChannelShutdownDirection The direction of a shutdown.DefaultMaxMessagesRecvBufferAllocator Default implementation ofMaxMessagesRecvBufferAllocator
which respectsChannelOption.AUTO_READ
and also prevents overflow.EventLoop Will handle all the I/O operations for aIoHandle
once registered.EventLoopGroup SpecialEventExecutorGroup
which allows registeringIoHandle
s that get processed for later selection during the event loop.IoExecutionContext The execution context for anIoHandler
.IoHandle A handle that will process I/O.IoHandler Handles IO dispatching for anEventLoop
All operations exceptIoHandler.wakeup(boolean)
andIoHandler.isCompatible(Class)
MUST be executed on theEventLoop
thread and should never be called from the user-directly.IoHandlerFactory Factory forIoHandler
instances.MaxMessagesRecvBufferAllocator RecvBufferAllocator
that limits the number of read operations that will be attempted when a read operation is attempted by the event loop.RecvBufferAllocator Allocates a new receive buffer whose capacity is probably large enough to read all inbound data and small enough not to waste its space.RecvBufferAllocator.Handle SelectStrategyFactory Factory that creates a newSelectStrategy
every time.ServerChannel -
Classes in io.netty5.channel used by io.netty5.channel.local Class Description AbstractChannel A skeletalChannel
implementation.AbstractServerChannel A skeletal server-sideChannel
implementation.Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelOutboundBuffer (Transport implementors only) an internal data structure used byAbstractChannel
to store its pending outbound write requests.ChannelOutboundInvoker ChannelShutdownDirection The direction of a shutdown.EventLoop Will handle all the I/O operations for aIoHandle
once registered.EventLoopGroup SpecialEventExecutorGroup
which allows registeringIoHandle
s that get processed for later selection during the event loop.IoExecutionContext The execution context for anIoHandler
.IoHandle A handle that will process I/O.IoHandler Handles IO dispatching for anEventLoop
All operations exceptIoHandler.wakeup(boolean)
andIoHandler.isCompatible(Class)
MUST be executed on theEventLoop
thread and should never be called from the user-directly.IoHandlerFactory Factory forIoHandler
instances.ServerChannel -
Classes in io.netty5.channel used by io.netty5.channel.nio Class Description AbstractChannel A skeletalChannel
implementation.Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelMetadata Represents the properties of aChannel
implementation.ChannelOutboundBuffer (Transport implementors only) an internal data structure used byAbstractChannel
to store its pending outbound write requests.ChannelOutboundInvoker EventLoop Will handle all the I/O operations for aIoHandle
once registered.FileRegion A region of a file that is sent via aChannel
which supports zero-copy file transfer.IoExecutionContext The execution context for anIoHandler
.IoHandle A handle that will process I/O.IoHandler Handles IO dispatching for anEventLoop
All operations exceptIoHandler.wakeup(boolean)
andIoHandler.isCompatible(Class)
MUST be executed on theEventLoop
thread and should never be called from the user-directly.IoHandlerFactory Factory forIoHandler
instances.RecvBufferAllocator Allocates a new receive buffer whose capacity is probably large enough to read all inbound data and small enough not to waste its space.RecvBufferAllocator.Handle SelectStrategyFactory Factory that creates a newSelectStrategy
every time. -
Classes in io.netty5.channel used by io.netty5.channel.socket Class Description AddressedEnvelope A message that wraps another message with a sender address and a recipient address.BufferAddressedEnvelope Base class for addressed envelopes that haveBuffer
instances as messages.Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelOutboundInvoker DefaultAddressedEnvelope The defaultAddressedEnvelope
implementation.IoHandle A handle that will process I/O.ServerChannel -
Classes in io.netty5.channel used by io.netty5.channel.socket.nio Class Description AbstractChannel A skeletalChannel
implementation.Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelOption AChannelOption
allows to configure aChannel
in a type-safe way.ChannelOutboundBuffer (Transport implementors only) an internal data structure used byAbstractChannel
to store its pending outbound write requests.ChannelOutboundInvoker ChannelShutdownDirection The direction of a shutdown.EventLoop Will handle all the I/O operations for aIoHandle
once registered.EventLoopGroup SpecialEventExecutorGroup
which allows registeringIoHandle
s that get processed for later selection during the event loop.FileRegion A region of a file that is sent via aChannel
which supports zero-copy file transfer.IoHandle A handle that will process I/O.RecvBufferAllocator.Handle ServerChannel -
Classes in io.netty5.channel used by io.netty5.channel.unix Class Description AddressedEnvelope A message that wraps another message with a sender address and a recipient address.BufferAddressedEnvelope Base class for addressed envelopes that haveBuffer
instances as messages.Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelOption AChannelOption
allows to configure aChannel
in a type-safe way.ChannelOutboundBuffer.MessageProcessor ChannelOutboundInvoker DefaultAddressedEnvelope The defaultAddressedEnvelope
implementation.IoHandle A handle that will process I/O. -
Classes in io.netty5.channel used by io.netty5.handler.address Class Description ChannelHandler Handles an I/O event or intercepts an I/O operation, and forwards it to its next handler in itsChannelPipeline
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers. -
Classes in io.netty5.channel used by io.netty5.handler.codec Class Description AddressedEnvelope A message that wraps another message with a sender address and a recipient address.ChannelHandler Handles an I/O event or intercepts an I/O operation, and forwards it to its next handler in itsChannelPipeline
.ChannelHandlerAdapter Skeleton implementation of aChannelHandler
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelPipeline A list ofChannelHandler
s which handles or intercepts inbound events and outbound operations of aChannel
.ChannelShutdownDirection The direction of a shutdown. -
Classes in io.netty5.channel used by io.netty5.handler.codec.base64 Class Description ChannelHandler Handles an I/O event or intercepts an I/O operation, and forwards it to its next handler in itsChannelPipeline
.ChannelHandlerAdapter Skeleton implementation of aChannelHandler
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers. -
Classes in io.netty5.channel used by io.netty5.handler.codec.bytes Class Description ChannelHandler Handles an I/O event or intercepts an I/O operation, and forwards it to its next handler in itsChannelPipeline
.ChannelHandlerAdapter Skeleton implementation of aChannelHandler
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers. -
Classes in io.netty5.channel used by io.netty5.handler.codec.compression Class Description ChannelHandler Handles an I/O event or intercepts an I/O operation, and forwards it to its next handler in itsChannelPipeline
.ChannelHandlerAdapter Skeleton implementation of aChannelHandler
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers. -
Classes in io.netty5.channel used by io.netty5.handler.codec.dns Class Description AddressedEnvelope A message that wraps another message with a sender address and a recipient address.ChannelHandler Handles an I/O event or intercepts an I/O operation, and forwards it to its next handler in itsChannelPipeline
.ChannelHandlerAdapter Skeleton implementation of aChannelHandler
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers. -
Classes in io.netty5.channel used by io.netty5.handler.codec.http Class Description ChannelHandler Handles an I/O event or intercepts an I/O operation, and forwards it to its next handler in itsChannelPipeline
.ChannelHandlerAdapter Skeleton implementation of aChannelHandler
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelPipeline A list ofChannelHandler
s which handles or intercepts inbound events and outbound operations of aChannel
.CombinedChannelDuplexHandler Combines the inbound handling of oneChannelHandler
with the outbound handling of anotherChannelHandler
. -
Classes in io.netty5.channel used by io.netty5.handler.codec.http.cors Class Description ChannelHandler Handles an I/O event or intercepts an I/O operation, and forwards it to its next handler in itsChannelPipeline
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers. -
Classes in io.netty5.channel used by io.netty5.handler.codec.http.websocketx Class Description Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelHandler Handles an I/O event or intercepts an I/O operation, and forwards it to its next handler in itsChannelPipeline
.ChannelHandlerAdapter Skeleton implementation of aChannelHandler
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelPipeline A list ofChannelHandler
s which handles or intercepts inbound events and outbound operations of aChannel
. -
Classes in io.netty5.channel used by io.netty5.handler.codec.http.websocketx.extensions Class Description ChannelHandler Handles an I/O event or intercepts an I/O operation, and forwards it to its next handler in itsChannelPipeline
.ChannelHandlerAdapter Skeleton implementation of aChannelHandler
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers. -
Classes in io.netty5.channel used by io.netty5.handler.codec.http.websocketx.extensions.compression Class Description ChannelHandler Handles an I/O event or intercepts an I/O operation, and forwards it to its next handler in itsChannelPipeline
. -
Classes in io.netty5.channel used by io.netty5.handler.codec.http2 Class Description Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelHandler Handles an I/O event or intercepts an I/O operation, and forwards it to its next handler in itsChannelPipeline
.ChannelHandlerAdapter Skeleton implementation of aChannelHandler
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelOption AChannelOption
allows to configure aChannel
in a type-safe way.ChannelOutboundInvoker IoHandle A handle that will process I/O. -
Classes in io.netty5.channel used by io.netty5.handler.codec.rtsp Class Description ChannelHandler Handles an I/O event or intercepts an I/O operation, and forwards it to its next handler in itsChannelPipeline
.ChannelHandlerAdapter Skeleton implementation of aChannelHandler
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers. -
Classes in io.netty5.channel used by io.netty5.handler.codec.string Class Description ChannelHandler Handles an I/O event or intercepts an I/O operation, and forwards it to its next handler in itsChannelPipeline
.ChannelHandlerAdapter Skeleton implementation of aChannelHandler
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers. -
Classes in io.netty5.channel used by io.netty5.handler.flow Class Description ChannelHandler Handles an I/O event or intercepts an I/O operation, and forwards it to its next handler in itsChannelPipeline
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers. -
Classes in io.netty5.channel used by io.netty5.handler.flush Class Description ChannelHandler Handles an I/O event or intercepts an I/O operation, and forwards it to its next handler in itsChannelPipeline
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers. -
Classes in io.netty5.channel used by io.netty5.handler.ipfilter Class Description ChannelHandler Handles an I/O event or intercepts an I/O operation, and forwards it to its next handler in itsChannelPipeline
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers. -
Classes in io.netty5.channel used by io.netty5.handler.logging Class Description ChannelHandler Handles an I/O event or intercepts an I/O operation, and forwards it to its next handler in itsChannelPipeline
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers. -
Classes in io.netty5.channel used by io.netty5.handler.ssl Class Description Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelHandler Handles an I/O event or intercepts an I/O operation, and forwards it to its next handler in itsChannelPipeline
.ChannelHandlerAdapter Skeleton implementation of aChannelHandler
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelShutdownDirection The direction of a shutdown. -
Classes in io.netty5.channel used by io.netty5.handler.ssl.ocsp Class Description ChannelHandler Handles an I/O event or intercepts an I/O operation, and forwards it to its next handler in itsChannelPipeline
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers. -
Classes in io.netty5.channel used by io.netty5.handler.stream Class Description ChannelHandler Handles an I/O event or intercepts an I/O operation, and forwards it to its next handler in itsChannelPipeline
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers. -
Classes in io.netty5.channel used by io.netty5.handler.timeout Class Description ChannelException ARuntimeException
which is thrown when an I/O operation fails.ChannelHandler Handles an I/O event or intercepts an I/O operation, and forwards it to its next handler in itsChannelPipeline
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers. -
Classes in io.netty5.channel used by io.netty5.handler.traffic Class Description ChannelHandler Handles an I/O event or intercepts an I/O operation, and forwards it to its next handler in itsChannelPipeline
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers. -
Classes in io.netty5.channel used by io.netty5.resolver.dns Class Description AddressedEnvelope A message that wraps another message with a sender address and a recipient address.ChannelFactory Creates a newChannel
.EventLoop Will handle all the I/O operations for aIoHandle
once registered.