| Name | Description | Type | Package | Framework |
| AbstractChannel | A skeletal Channel implementation. | Class | io.netty.channel | Netty |
|
| AbstractEpollServerChannel | | Class | io.netty.channel.epoll | Netty |
|
| AbstractEpollStreamChannel | | Class | io.netty.channel.epoll | Netty |
|
| AbstractEventLoop | Skeletal implementation of EventLoop. | Class | io.netty.channel | Netty |
|
| AbstractEventLoopGroup | Skeletal implementation of EventLoopGroup. | Class | io.netty.channel | Netty |
|
| AbstractNioByteChannel | AbstractNioChannel base class for Channels that operate on bytes. | Class | io.netty.channel.nio | Netty |
|
| AbstractNioChannel | Abstract base class for Channel implementations which use a Selector based approach. | Class | io.netty.channel.nio | Netty |
|
| AbstractNioChannel .NioUnsafe | | Interface | io.netty.channel.nio.AbstractNioChannel | Netty |
|
| AbstractNioMessageChannel | AbstractNioChannel base class for Channels that operate on messages. | Class | io.netty.channel.nio | Netty |
|
| AbstractOioByteChannel | | Class | io.netty.channel.oio | Netty |
|
| AbstractOioChannel | | Class | io.netty.channel.oio | Netty |
|
| AbstractOioMessageChannel | | Class | io.netty.channel.oio | Netty |
|
| AbstractServerChannel | A skeletal server-side Channel implementation. | Class | io.netty.channel | Netty |
|
| AdaptiveRecvByteBufAllocator | The RecvByteBufAllocator that automatically increases anddecreases the predicted buffer size on feed back. | Class | io.netty.channel | Netty |
|
| AddressedEnvelope | A message that wraps another message with a sender address and a recipient address. | Interface | io.netty.channel | Netty |
|
| Channel | A nexus to a network socket or a component which is capable of I/Ooperations such as read, write, connect, and bind. | Interface | io.netty.channel | Netty |
|
| Channel .Unsafe | Unsafe operations that should never be called from user-code. | Interface | io.netty.channel.Channel | Netty |
|
| ChannelConfig | A set of configuration properties of a Channel. | Interface | io.netty.channel | Netty |
|
| ChannelDuplexHandler | | Class | io.netty.channel | Netty |
|
| ChannelException | A RuntimeException which is thrown when an I/O operation fails. | Class | io.netty.channel | Netty |
|
| ChannelFactory | Creates a new Channel. | Interface | io.netty.channel | Netty |
|
| ChannelFlushPromiseNotifier | This implementation allows to register ChannelFuture instances which will get notified once some amount ofdata was written and so a checkpoint was reached. | Class | io.netty.channel | Netty |
|
| ChannelFuture | The result of an asynchronous Channel I/O operation. | Interface | io.netty.channel | Netty |
|
| ChannelFutureListener | Listens to the result of a ChannelFuture. | Interface | io.netty.channel | Netty |
|
| ChannelGroup | A thread-safe Set that contains open Channels and providesvarious bulk operations on them. | Interface | io.netty.channel.group | Netty |
|
| ChannelGroupException | ChannelException which holds ChannelFutures that failed because of an error. | Class | io.netty.channel.group | Netty |
|
| ChannelGroupFuture | The result of an asynchronous ChannelGroup operation. | Interface | io.netty.channel.group | Netty |
|
| ChannelGroupFutureListener | Listens to the result of a ChannelGroupFuture. | Interface | io.netty.channel.group | Netty |
|
| ChannelHandler | Handles an I/O event or intercepts an I/O operation, and forwards it to its next handler inits ChannelPipeline. | Interface | io.netty.channel | Netty |
|
| ChannelHandler .Sharable | Indicates that the same instance of the annotated ChannelHandlercan be added to one or more ChannelPipelines multiple times | Class | io.netty.channel.ChannelHandler | Netty |
|
| ChannelHandler .Skip | Indicates that the annotated event handler method in ChannelHandler will not be invoked byChannelPipeline. | Class | io.netty.channel.ChannelHandler | Netty |
|
| ChannelHandlerAdapter | Skelton implementation of a ChannelHandler. | Class | io.netty.channel | Netty |
|
| ChannelHandlerAppender | A ChannelHandler that appends the specified ChannelHandlers right next to itself. | Class | io.netty.channel | Netty |
|
| ChannelHandlerContext | Enables a ChannelHandler to interact with its ChannelPipelineand other handlers. | Interface | io.netty.channel | Netty |
|
| ChannelHandlerInvoker | Invokes the event handler methods of ChannelHandler. | Interface | io.netty.channel | Netty |
|
| ChannelHandlerInvokerUtil | A set of helper methods for easier implementation of custom ChannelHandlerInvoker implementation. | Class | io.netty.channel | Netty |
|
| ChannelId | Represents the globally unique identifier of a Channel. | Interface | io.netty.channel | Netty |
|
| ChannelInboundHandlerAdapter | | Class | io.netty.channel | Netty |
|
| ChannelInitializer | A special ChannelHandler which offers an easy way to initialize a Channel once it wasregistered to its EventLoop. | Class | io.netty.channel | Netty |
|
| ChannelInputShutdownEvent | Special event which will be fired and passed to theChannelHandler. | Class | io.netty.channel.socket | Netty |
|
| ChannelMatcher | Allows to only match some Channel's for operations in ChannelGroup. | Interface | io.netty.channel.group | Netty |
|
| ChannelMatchers | Helper class which provides often used ChannelMatcher implementations. | Class | io.netty.channel.group | Netty |
|
| ChannelMetadata | Represents the properties of a Channel implementation. | Class | io.netty.channel | Netty |
|
| ChannelOption | | Class | io.netty.channel | Netty |
|
| ChannelOutboundBuffer | (Transport implementors only) an internal data structure used by AbstractChannel to store its pendingoutbound write requests. | Class | io.netty.channel | Netty |
|
| ChannelOutboundBuffer .MessageProcessor | | Interface | io.netty.channel.ChannelOutboundBuffer | Netty |
|
| ChannelOutboundHandlerAdapter | | Class | io.netty.channel | Netty |
|
| ChannelPipeline | A list of ChannelHandlers which handles or intercepts inbound events and outbound operations of aChannel. | Interface | io.netty.channel | Netty |
|
| ChannelPipelineException | A ChannelException which is thrown when a ChannelPipelinefailed to execute an operation. | Class | io.netty.channel | Netty |
|
| ChannelProgressiveFuture | | Interface | io.netty.channel | Netty |
|
| ChannelProgressiveFutureListener | | Interface | io.netty.channel | Netty |
|
| ChannelProgressivePromise | Special ChannelPromise which will be notified once the associated bytes is transferring. | Interface | io.netty.channel | Netty |
|
| ChannelPromise | Special ChannelFuture which is writable. | Interface | io.netty.channel | Netty |
|
| ChannelPromiseAggregator | Class which is used to consolidate multiple channel futures into one, bylistening to the individual futures and producing an aggregated result | Class | io.netty.channel | Netty |
|
| ChannelPromiseNotifier | ChannelFutureListener implementation which takes other ChannelFuture(s) and notifies them on completion. | Class | io.netty.channel | Netty |
|
| ConnectTimeoutException | ConnectException which will be thrown if a connection couldnot be established because of a connection timeout. | Class | io.netty.channel | Netty |
|
| DatagramChannel | | Interface | io.netty.channel.socket | Netty |
|
| DatagramChannelConfig | A ChannelConfig for a DatagramChannel. | Interface | io.netty.channel.socket | Netty |
|
| DatagramPacket | The message container that is used for DatagramChannel to communicate with the remote peer. | Class | io.netty.channel.socket | Netty |
|
| DefaultAddressedEnvelope | The default AddressedEnvelope implementation. | Class | io.netty.channel | Netty |
|
| DefaultChannelConfig | The default SocketChannelConfig implementation. | Class | io.netty.channel | Netty |
|
| DefaultChannelGroup | The default ChannelGroup implementation. | Class | io.netty.channel.group | Netty |
|
| DefaultChannelHandlerInvoker | | Class | io.netty.channel | Netty |
|
| DefaultChannelProgressivePromise | The default ChannelProgressivePromise implementation. | Class | io.netty.channel | Netty |
|
| DefaultChannelPromise | The default ChannelPromise implementation. | Class | io.netty.channel | Netty |
|
| DefaultDatagramChannelConfig | The default DatagramChannelConfig implementation. | Class | io.netty.channel.socket | Netty |
|
| DefaultEventLoop | | Class | io.netty.channel | Netty |
|
| DefaultEventLoopGroup | MultithreadEventLoopGroup which must be used for the local transport. | Class | io.netty.channel | Netty |
|
| DefaultFileRegion | Default FileRegion implementation which transfer data from a FileChannel or File. | Class | io.netty.channel | Netty |
|
| DefaultMessageSizeEstimator | Default MessageSizeEstimator implementation which supports the estimation of the size ofByteBuf, ByteBufHolder and FileRegion. | Class | io.netty.channel | Netty |
|
| DefaultOioServerSocketChannelConfig | | Class | io.netty.channel.socket.oio | Netty |
|
| DefaultOioSocketChannelConfig | | Class | io.netty.channel.socket.oio | Netty |
|
| DefaultSctpChannelConfig | The default SctpChannelConfig implementation for SCTP. | Class | io.netty.channel.sctp | Netty |
|
| DefaultSctpServerChannelConfig | The default SctpServerChannelConfig implementation for SCTP. | Class | io.netty.channel.sctp | Netty |
|
| DefaultServerSocketChannelConfig | The default ServerSocketChannelConfig implementation. | Class | io.netty.channel.socket | Netty |
|
| DefaultSocketChannelConfig | The default SocketChannelConfig implementation. | Class | io.netty.channel.socket | Netty |
|
| DefaultUdtChannelConfig | The default UdtChannelConfig implementation. | Class | io.netty.channel.udt | Netty |
|
| DefaultUdtServerChannelConfig | The default UdtServerChannelConfig implementation. | Class | io.netty.channel.udt | Netty |
|
| DomainSocketAddress | | Class | io.netty.channel.unix | Netty |
|
| DomainSocketChannel | | Interface | io.netty.channel.unix | Netty |
|
| DomainSocketChannelConfig | Special ChannelConfig for DomainSocketChannels. | Interface | io.netty.channel.unix | Netty |
|
| DomainSocketReadMode | enum DomainSocketReadModeDifferent modes of reading from a DomainSocketChannel. | Class | io.netty.channel.unix | Netty |
|
| EmbeddedChannel | Base class for Channel implementations that are used in an embedded fashion. | Class | io.netty.channel.embedded | Netty |
|
| Epoll | Tells if netty-transport-native-epoll is supported. | Class | io.netty.channel.epoll | Netty |
|
| EpollChannelConfig | | Class | io.netty.channel.epoll | Netty |
|
| EpollChannelOption | | Class | io.netty.channel.epoll | Netty |
|
| EpollDatagramChannel | DatagramChannel implementation that uses linux EPOLL Edge-Triggered Mode formaximal performance. | Class | io.netty.channel.epoll | Netty |
|
| EpollDatagramChannelConfig | | Class | io.netty.channel.epoll | Netty |
|
| EpollDomainSocketChannel | | Class | io.netty.channel.epoll | Netty |
|
| EpollDomainSocketChannelConfig | | Class | io.netty.channel.epoll | Netty |
|
| EpollEventLoopGroup | A MultithreadEventLoopGroup which uses epoll under thecovers. | Class | io.netty.channel.epoll | Netty |
|
| EpollMode | The epoll mode to use. | Class | io.netty.channel.epoll | Netty |
|
| EpollServerChannelConfig | | Class | io.netty.channel.epoll | Netty |
|
| EpollServerDomainSocketChannel | | Class | io.netty.channel.epoll | Netty |
|
| EpollServerSocketChannel | ServerSocketChannel implementation that uses linux EPOLL Edge-Triggered Mode formaximal performance. | Class | io.netty.channel.epoll | Netty |
|
| EpollServerSocketChannelConfig | | Class | io.netty.channel.epoll | Netty |
|
| EpollSocketChannel | SocketChannel implementation that uses linux EPOLL Edge-Triggered Mode formaximal performance. | Class | io.netty.channel.epoll | Netty |
|
| EpollSocketChannelConfig | | Class | io.netty.channel.epoll | Netty |
|
| EpollTcpInfo | __u8 tcpi_retransmits;__u8 tcpi_snd_wscale : 4, tcpi_rcv_wscale : 4; | Class | io.netty.channel.epoll | Netty |
|
| EventLoop | Will handle all the I/O operations for a Channel once registered. | Interface | io.netty.channel | Netty |
|
| EventLoopException | Special ChannelException which will be thrown by EventLoop and EventLoopGroupSee Also:Serialized Form | Class | io.netty.channel | Netty |
|
| EventLoopGroup | Special EventExecutorGroup which allows registering Channels that getprocessed for later selection during the event loop. | Interface | io.netty.channel | Netty |
|
| FileDescriptor | Native FileDescriptor implementation which allows to wrap an int and provide aFileDescriptor for it. | Class | io.netty.channel.unix | Netty |
|
| FileRegion | A region of a file that is sent via a Channel which supportszero-copy file transfer. | Interface | io.netty.channel | Netty |
|
| FixedRecvByteBufAllocator | The RecvByteBufAllocator that always yields the same buffersize prediction. | Class | io.netty.channel | Netty |
|
| InternetProtocolFamily | enum InternetProtocolFamilyInternet Protocol (IP) families used byte the DatagramChannel | Class | io.netty.channel.socket | Netty |
|
| LocalAddress | An endpoint in the local transport. | Class | io.netty.channel.local | Netty |
|
| LocalChannel | A Channel for the local transport. | Class | io.netty.channel.local | Netty |
|
| LocalServerChannel | A ServerChannel for the local transport which allows in VM communication. | Class | io.netty.channel.local | Netty |
|
| MessageSizeEstimator | Responsible to estimate size of a message. | Interface | io.netty.channel | Netty |
|
| MessageSizeEstimator .Handle | | Interface | io.netty.channel.MessageSizeEstimator | Netty |
|
| MultithreadEventLoopGroup | | Class | io.netty.channel | Netty |
|
| NioDatagramChannel | An NIO datagram Channel that sends and receives anSee Also:AddressedEnvelope, | Class | io.netty.channel.socket.nio | Netty |
|
| NioEventLoop | A SingleThreadEventLoop implementation which registers each Channel with aNIO Selector and performs the multiplexing of these in the event loop. | Class | io.netty.channel.nio | Netty |
|
| NioEventLoopGroup | A MultithreadEventLoopGroup implementation which is used for NIO Selector based Channels. | Class | io.netty.channel.nio | Netty |
|
| NioSctpChannel | SctpChannel implementation which use non-blocking mode and allows to read /write SctpMessages to the underlying SctpChannel. | Class | io.netty.channel.sctp.nio | Netty |
|
| NioSctpServerChannel | SctpServerChannel implementation which use non-blocking mode to accept newconnections and create the NioSctpChannel for them. | Class | io.netty.channel.sctp.nio | Netty |
|
| NioServerSocketChannel | A ServerSocketChannel implementation which usesNIO selector based implementation to accept new connections. | Class | io.netty.channel.socket.nio | Netty |
|
| NioSocketChannel | SocketChannel which uses NIO selector based implementation. | Class | io.netty.channel.socket.nio | Netty |
|
| NioTask | An arbitrary task that can be executed by NioEventLoop when a SelectableChannel becomes ready. | Interface | io.netty.channel.nio | Netty |
|
| NioUdtAcceptorChannel | Common base for Netty Byte/Message UDT Stream/Datagram acceptors. | Class | io.netty.channel.udt.nio | Netty |
|
| NioUdtByteAcceptorChannel | Byte Channel Acceptor for UDT Streams. | Class | io.netty.channel.udt.nio | Netty |
|
| NioUdtByteConnectorChannel | Byte Channel Connector for UDT Streams. | Class | io.netty.channel.udt.nio | Netty |
|
| NioUdtByteRendezvousChannel | Byte Channel Rendezvous for UDT Streams. | Class | io.netty.channel.udt.nio | Netty |
|
| NioUdtMessageAcceptorChannel | Message Channel Acceptor for UDT Datagrams. | Class | io.netty.channel.udt.nio | Netty |
|
| NioUdtMessageConnectorChannel | Message Connector for UDT Datagrams. | Class | io.netty.channel.udt.nio | Netty |
|
| NioUdtMessageRendezvousChannel | Message Rendezvous for UDT Datagrams. | Class | io.netty.channel.udt.nio | Netty |
|
| NioUdtProvider | UDT NIO components provider:Provides ChannelFactory for UDT channels. | Class | io.netty.channel.udt.nio | Netty |
|
| OioByteStreamChannel | Abstract base class for OIO Channels that are based on streams. | Class | io.netty.channel.oio | Netty |
|
| OioDatagramChannel | An OIO datagram Channel that sends and receives anSee Also:AddressedEnvelope, | Class | io.netty.channel.socket.oio | Netty |
|
| OioEventLoopGroup | EventLoopGroup which is used to handle OIO Channel's. | Class | io.netty.channel.oio | Netty |
|
| OioSctpChannel | SctpChannel implementation which use blocking mode and allows to read / writeSctpMessages to the underlying SctpChannel. | Class | io.netty.channel.sctp.oio | Netty |
|
| OioSctpServerChannel | SctpServerChannel implementation which use blocking mode to accept newconnections and create the OioSctpChannel for them. | Class | io.netty.channel.sctp.oio | Netty |
|
| OioServerSocketChannel | ServerSocketChannel which accepts new connections and create the OioSocketChannel's for them. | Class | io.netty.channel.socket.oio | Netty |
|
| OioServerSocketChannelConfig | A ServerSocketChannelConfig for a OioServerSocketChannel. | Interface | io.netty.channel.socket.oio | Netty |
|
| OioSocketChannel | | Class | io.netty.channel.socket.oio | Netty |
|
| OioSocketChannelConfig | A ChannelConfig for a OioSocketChannel. | Interface | io.netty.channel.socket.oio | Netty |
|
| PendingWriteQueue | A queue of write operations which are pending for later execution. | Class | io.netty.channel | Netty |
|
| RecvByteBufAllocator | Allocates a new receive buffer whose capacity is probably large enough to read all inbound data and small enoughnot to waste its space. | Interface | io.netty.channel | Netty |
|
| RecvByteBufAllocator .Handle | | Interface | io.netty.channel.RecvByteBufAllocator | Netty |
|
| ReflectiveChannelFactory | A ChannelFactory that instantiates a new Channel by invoking its default constructor reflectively. | Class | io.netty.channel | Netty |
|
| RxtxChannel | A channel to a serial device using the RXTX library. | Class | io.netty.channel.rxtx | Netty |
|
| RxtxChannelConfig | A configuration class for RXTX device connections. | Interface | io.netty.channel.rxtx | Netty |
|
| RxtxChannelConfig .Databits | 5 data bits will be used for each character (ie. | Class | io.netty.channel.rxtx.RxtxChannelConfig | Netty |
|
| RxtxChannelConfig .Paritybit | An even parity bit will be sent with each data character, ie. | Class | io.netty.channel.rxtx.RxtxChannelConfig | Netty |
|
| RxtxChannelConfig .Stopbits | 1 stop bit will be sent at the end of every character1. | Class | io.netty.channel.rxtx.RxtxChannelConfig | Netty |
|
| RxtxChannelOption | | Class | io.netty.channel.rxtx | Netty |
|
| RxtxDeviceAddress | A SocketAddress subclass to wrap the serial port address of a RXTXdevice (e. | Class | io.netty.channel.rxtx | Netty |
|
| SctpChannel | A SCTP/IP Channel interface for single SCTP association. | Interface | io.netty.channel.sctp | Netty |
|
| SctpChannelConfig | A ChannelConfig for a SctpChannel. | Interface | io.netty.channel.sctp | Netty |
|
| SctpChannelOption | | Class | io.netty.channel.sctp | Netty |
|
| SctpMessage | | Class | io.netty.channel.sctp | Netty |
|
| SctpNotificationHandler | AbstractNotificationHandler implementation which will handle all Notifications by trigger aNotification user event in the ChannelPipeline of a SctpChannel. | Class | io.netty.channel.sctp | Netty |
|
| SctpServerChannel | A SCTP/IP ServerChannel which accepts incoming SCTP/IP associations. | Interface | io.netty.channel.sctp | Netty |
|
| SctpServerChannelConfig | A ChannelConfig for a SctpServerChannelConfig. | Interface | io.netty.channel.sctp | Netty |
|
| ServerChannel | A Channel that accepts an incoming connection attempt and createsits child Channels by accepting them. | Interface | io.netty.channel | Netty |
|
| ServerDomainSocketChannel | | Interface | io.netty.channel.unix | Netty |
|
| ServerSocketChannel | A TCP/IP ServerChannel which accepts incoming TCP/IP connections. | Interface | io.netty.channel.socket | Netty |
|
| ServerSocketChannelConfig | A ChannelConfig for a ServerSocketChannel. | Interface | io.netty.channel.socket | Netty |
|
| SimpleChannelInboundHandler | ChannelHandler which allows to explicit only handle a specific type of messages. | Class | io.netty.channel | Netty |
|
| SingleThreadEventLoop | Abstract base class for EventLoops that execute all its submitted tasks in a single thread. | Class | io.netty.channel | Netty |
|
| SocketChannel | A TCP/IP socket Channel. | Interface | io.netty.channel.socket | Netty |
|
| SocketChannelConfig | A ChannelConfig for a SocketChannel. | Interface | io.netty.channel.socket | Netty |
|
| ThreadPerChannelEventLoop | SingleThreadEventLoop which is used to handle OIO Channel's. | Class | io.netty.channel | Netty |
|
| ThreadPerChannelEventLoopGroup | An EventLoopGroup that creates one EventLoop per Channel. | Class | io.netty.channel | Netty |
|
| UdtChannel | Supported UDT UdtChannel are available via NioUdtProvider. | Interface | io.netty.channel.udt | Netty |
|
| UdtChannelConfig | A ChannelConfig for a UdtChannel. | Interface | io.netty.channel.udt | Netty |
|
| UdtChannelOption | | Class | io.netty.channel.udt | Netty |
|
| UdtMessage | The message container that is used for TypeUDT. | Class | io.netty.channel.udt | Netty |
|
| UdtServerChannel | Supported UDT UdtServerChannel are available via NioUdtProvider. | Interface | io.netty.channel.udt | Netty |
|
| UdtServerChannelConfig | A ChannelConfig for a UdtServerChannel. | Interface | io.netty.channel.udt | Netty |
|
| UnixChannel | Channel that expose operations that are only present on UNIX like systems. | Interface | io.netty.channel.unix | Netty |