Search Java Classes and Packages

Search Java Frameworks and Libraries

255581 classes and counting ...
Search Tips Index Status



#Io.netty.channel Classes and Interfaces - 172 results found.
NameDescriptionTypePackageFramework
AbstractChannelA skeletal Channel implementation.Classio.netty.channelNetty
AbstractEpollServerChannelClassio.netty.channel.epollNetty
AbstractEpollStreamChannelClassio.netty.channel.epollNetty
AbstractEventLoopSkeletal implementation of EventLoop.Classio.netty.channelNetty
AbstractEventLoopGroupSkeletal implementation of EventLoopGroup.Classio.netty.channelNetty
AbstractNioByteChannelAbstractNioChannel base class for Channels that operate on bytes.Classio.netty.channel.nioNetty
AbstractNioChannelAbstract base class for Channel implementations which use a Selector based approach.Classio.netty.channel.nioNetty
AbstractNioChannel .NioUnsafeInterfaceio.netty.channel.nio.AbstractNioChannelNetty
AbstractNioMessageChannelAbstractNioChannel base class for Channels that operate on messages.Classio.netty.channel.nioNetty
AbstractOioByteChannelClassio.netty.channel.oioNetty
AbstractOioChannelClassio.netty.channel.oioNetty
AbstractOioMessageChannelClassio.netty.channel.oioNetty
AbstractServerChannelA skeletal server-side Channel implementation.Classio.netty.channelNetty
AdaptiveRecvByteBufAllocatorThe RecvByteBufAllocator that automatically increases anddecreases the predicted buffer size on feed back.Classio.netty.channelNetty
AddressedEnvelopeA message that wraps another message with a sender address and a recipient address.Interfaceio.netty.channelNetty
ChannelA nexus to a network socket or a component which is capable of I/Ooperations such as read, write, connect, and bind.Interfaceio.netty.channelNetty
Channel .UnsafeUnsafe operations that should never be called from user-code.Interfaceio.netty.channel.ChannelNetty
ChannelConfigA set of configuration properties of a Channel.Interfaceio.netty.channelNetty
ChannelDuplexHandlerClassio.netty.channelNetty
ChannelExceptionA RuntimeException which is thrown when an I/O operation fails.Classio.netty.channelNetty
ChannelFactoryCreates a new Channel.Interfaceio.netty.channelNetty
ChannelFlushPromiseNotifierThis implementation allows to register ChannelFuture instances which will get notified once some amount ofdata was written and so a checkpoint was reached.Classio.netty.channelNetty
ChannelFutureThe result of an asynchronous Channel I/O operation.Interfaceio.netty.channelNetty
ChannelFutureListenerListens to the result of a ChannelFuture.Interfaceio.netty.channelNetty
ChannelGroupA thread-safe Set that contains open Channels and providesvarious bulk operations on them.Interfaceio.netty.channel.groupNetty
ChannelGroupExceptionChannelException which holds ChannelFutures that failed because of an error.Classio.netty.channel.groupNetty
ChannelGroupFutureThe result of an asynchronous ChannelGroup operation.Interfaceio.netty.channel.groupNetty
ChannelGroupFutureListenerListens to the result of a ChannelGroupFuture.Interfaceio.netty.channel.groupNetty
ChannelHandlerHandles an I/O event or intercepts an I/O operation, and forwards it to its next handler inits ChannelPipeline.Interfaceio.netty.channelNetty
ChannelHandler .SharableIndicates that the same instance of the annotated ChannelHandlercan be added to one or more ChannelPipelines multiple timesClassio.netty.channel.ChannelHandlerNetty
ChannelHandler .SkipIndicates that the annotated event handler method in ChannelHandler will not be invoked byChannelPipeline.Classio.netty.channel.ChannelHandlerNetty
ChannelHandlerAdapterSkelton implementation of a ChannelHandler.Classio.netty.channelNetty
ChannelHandlerAppenderA ChannelHandler that appends the specified ChannelHandlers right next to itself.Classio.netty.channelNetty
ChannelHandlerContextEnables a ChannelHandler to interact with its ChannelPipelineand other handlers.Interfaceio.netty.channelNetty
ChannelHandlerInvokerInvokes the event handler methods of ChannelHandler.Interfaceio.netty.channelNetty
ChannelHandlerInvokerUtilA set of helper methods for easier implementation of custom ChannelHandlerInvoker implementation.Classio.netty.channelNetty
ChannelIdRepresents the globally unique identifier of a Channel.Interfaceio.netty.channelNetty
ChannelInboundHandlerAdapterClassio.netty.channelNetty
ChannelInitializerA special ChannelHandler which offers an easy way to initialize a Channel once it wasregistered to its EventLoop.Classio.netty.channelNetty
ChannelInputShutdownEventSpecial event which will be fired and passed to theChannelHandler.Classio.netty.channel.socketNetty
ChannelMatcherAllows to only match some Channel's for operations in ChannelGroup.Interfaceio.netty.channel.groupNetty
ChannelMatchersHelper class which provides often used ChannelMatcher implementations.Classio.netty.channel.groupNetty
ChannelMetadataRepresents the properties of a Channel implementation.Classio.netty.channelNetty
ChannelOptionClassio.netty.channelNetty
ChannelOutboundBuffer(Transport implementors only) an internal data structure used by AbstractChannel to store its pendingoutbound write requests.Classio.netty.channelNetty
ChannelOutboundBuffer .MessageProcessorInterfaceio.netty.channel.ChannelOutboundBufferNetty
ChannelOutboundHandlerAdapterClassio.netty.channelNetty
ChannelPipelineA list of ChannelHandlers which handles or intercepts inbound events and outbound operations of aChannel.Interfaceio.netty.channelNetty
ChannelPipelineExceptionA ChannelException which is thrown when a ChannelPipelinefailed to execute an operation.Classio.netty.channelNetty
ChannelProgressiveFutureInterfaceio.netty.channelNetty
ChannelProgressiveFutureListenerInterfaceio.netty.channelNetty
ChannelProgressivePromiseSpecial ChannelPromise which will be notified once the associated bytes is transferring.Interfaceio.netty.channelNetty
ChannelPromiseSpecial ChannelFuture which is writable.Interfaceio.netty.channelNetty
ChannelPromiseAggregatorClass which is used to consolidate multiple channel futures into one, bylistening to the individual futures and producing an aggregated resultClassio.netty.channelNetty
ChannelPromiseNotifierChannelFutureListener implementation which takes other ChannelFuture(s) and notifies them on completion.Classio.netty.channelNetty
ConnectTimeoutExceptionConnectException which will be thrown if a connection couldnot be established because of a connection timeout.Classio.netty.channelNetty
DatagramChannelInterfaceio.netty.channel.socketNetty
DatagramChannelConfigA ChannelConfig for a DatagramChannel.Interfaceio.netty.channel.socketNetty
DatagramPacketThe message container that is used for DatagramChannel to communicate with the remote peer.Classio.netty.channel.socketNetty
DefaultAddressedEnvelopeThe default AddressedEnvelope implementation.Classio.netty.channelNetty
DefaultChannelConfigThe default SocketChannelConfig implementation.Classio.netty.channelNetty
DefaultChannelGroupThe default ChannelGroup implementation.Classio.netty.channel.groupNetty
DefaultChannelHandlerInvokerClassio.netty.channelNetty
DefaultChannelProgressivePromiseThe default ChannelProgressivePromise implementation.Classio.netty.channelNetty
DefaultChannelPromiseThe default ChannelPromise implementation.Classio.netty.channelNetty
DefaultDatagramChannelConfigThe default DatagramChannelConfig implementation.Classio.netty.channel.socketNetty
DefaultEventLoopClassio.netty.channelNetty
DefaultEventLoopGroupMultithreadEventLoopGroup which must be used for the local transport.Classio.netty.channelNetty
DefaultFileRegionDefault FileRegion implementation which transfer data from a FileChannel or File.Classio.netty.channelNetty
DefaultMessageSizeEstimatorDefault MessageSizeEstimator implementation which supports the estimation of the size ofByteBuf, ByteBufHolder and FileRegion.Classio.netty.channelNetty
DefaultOioServerSocketChannelConfigClassio.netty.channel.socket.oioNetty
DefaultOioSocketChannelConfigClassio.netty.channel.socket.oioNetty
DefaultSctpChannelConfigThe default SctpChannelConfig implementation for SCTP.Classio.netty.channel.sctpNetty
DefaultSctpServerChannelConfigThe default SctpServerChannelConfig implementation for SCTP.Classio.netty.channel.sctpNetty
DefaultServerSocketChannelConfigThe default ServerSocketChannelConfig implementation.Classio.netty.channel.socketNetty
DefaultSocketChannelConfigThe default SocketChannelConfig implementation.Classio.netty.channel.socketNetty
DefaultUdtChannelConfigThe default UdtChannelConfig implementation.Classio.netty.channel.udtNetty
DefaultUdtServerChannelConfigThe default UdtServerChannelConfig implementation.Classio.netty.channel.udtNetty
DomainSocketAddressClassio.netty.channel.unixNetty
DomainSocketChannelInterfaceio.netty.channel.unixNetty
DomainSocketChannelConfigSpecial ChannelConfig for DomainSocketChannels.Interfaceio.netty.channel.unixNetty
DomainSocketReadModeenum DomainSocketReadModeDifferent modes of reading from a DomainSocketChannel.Classio.netty.channel.unixNetty
EmbeddedChannelBase class for Channel implementations that are used in an embedded fashion.Classio.netty.channel.embeddedNetty
EpollTells if netty-transport-native-epoll is supported.Classio.netty.channel.epollNetty
EpollChannelConfigClassio.netty.channel.epollNetty
EpollChannelOptionClassio.netty.channel.epollNetty
EpollDatagramChannelDatagramChannel implementation that uses linux EPOLL Edge-Triggered Mode formaximal performance.Classio.netty.channel.epollNetty
EpollDatagramChannelConfigClassio.netty.channel.epollNetty
EpollDomainSocketChannelClassio.netty.channel.epollNetty
EpollDomainSocketChannelConfigClassio.netty.channel.epollNetty
EpollEventLoopGroupA MultithreadEventLoopGroup which uses epoll under thecovers.Classio.netty.channel.epollNetty
EpollModeThe epoll mode to use.Classio.netty.channel.epollNetty
EpollServerChannelConfigClassio.netty.channel.epollNetty
EpollServerDomainSocketChannelClassio.netty.channel.epollNetty
EpollServerSocketChannelServerSocketChannel implementation that uses linux EPOLL Edge-Triggered Mode formaximal performance.Classio.netty.channel.epollNetty
EpollServerSocketChannelConfigClassio.netty.channel.epollNetty
EpollSocketChannelSocketChannel implementation that uses linux EPOLL Edge-Triggered Mode formaximal performance.Classio.netty.channel.epollNetty
EpollSocketChannelConfigClassio.netty.channel.epollNetty
EpollTcpInfo__u8 tcpi_retransmits;__u8 tcpi_snd_wscale : 4, tcpi_rcv_wscale : 4;Classio.netty.channel.epollNetty
EventLoopWill handle all the I/O operations for a Channel once registered.Interfaceio.netty.channelNetty
EventLoopExceptionSpecial ChannelException which will be thrown by EventLoop and EventLoopGroupSee Also:Serialized FormClassio.netty.channelNetty
EventLoopGroupSpecial EventExecutorGroup which allows registering Channels that getprocessed for later selection during the event loop.Interfaceio.netty.channelNetty
FileDescriptorNative FileDescriptor implementation which allows to wrap an int and provide aFileDescriptor for it.Classio.netty.channel.unixNetty
FileRegionA region of a file that is sent via a Channel which supportszero-copy file transfer.Interfaceio.netty.channelNetty
FixedRecvByteBufAllocatorThe RecvByteBufAllocator that always yields the same buffersize prediction.Classio.netty.channelNetty
InternetProtocolFamilyenum InternetProtocolFamilyInternet Protocol (IP) families used byte the DatagramChannelClassio.netty.channel.socketNetty
LocalAddressAn endpoint in the local transport.Classio.netty.channel.localNetty
LocalChannelA Channel for the local transport.Classio.netty.channel.localNetty
LocalServerChannelA ServerChannel for the local transport which allows in VM communication.Classio.netty.channel.localNetty
MessageSizeEstimatorResponsible to estimate size of a message.Interfaceio.netty.channelNetty
MessageSizeEstimator .HandleInterfaceio.netty.channel.MessageSizeEstimatorNetty
MultithreadEventLoopGroupClassio.netty.channelNetty
NioDatagramChannelAn NIO datagram Channel that sends and receives anSee Also:AddressedEnvelope, Classio.netty.channel.socket.nioNetty
NioEventLoopA SingleThreadEventLoop implementation which registers each Channel with aNIO Selector and performs the multiplexing of these in the event loop.Classio.netty.channel.nioNetty
NioEventLoopGroupA MultithreadEventLoopGroup implementation which is used for NIO Selector based Channels.Classio.netty.channel.nioNetty
NioSctpChannelSctpChannel implementation which use non-blocking mode and allows to read /write SctpMessages to the underlying SctpChannel.Classio.netty.channel.sctp.nioNetty
NioSctpServerChannelSctpServerChannel implementation which use non-blocking mode to accept newconnections and create the NioSctpChannel for them.Classio.netty.channel.sctp.nioNetty
NioServerSocketChannelA ServerSocketChannel implementation which usesNIO selector based implementation to accept new connections.Classio.netty.channel.socket.nioNetty
NioSocketChannelSocketChannel which uses NIO selector based implementation.Classio.netty.channel.socket.nioNetty
NioTaskAn arbitrary task that can be executed by NioEventLoop when a SelectableChannel becomes ready.Interfaceio.netty.channel.nioNetty
NioUdtAcceptorChannelCommon base for Netty Byte/Message UDT Stream/Datagram acceptors.Classio.netty.channel.udt.nioNetty
NioUdtByteAcceptorChannelByte Channel Acceptor for UDT Streams.Classio.netty.channel.udt.nioNetty
NioUdtByteConnectorChannelByte Channel Connector for UDT Streams.Classio.netty.channel.udt.nioNetty
NioUdtByteRendezvousChannelByte Channel Rendezvous for UDT Streams.Classio.netty.channel.udt.nioNetty
NioUdtMessageAcceptorChannelMessage Channel Acceptor for UDT Datagrams.Classio.netty.channel.udt.nioNetty
NioUdtMessageConnectorChannelMessage Connector for UDT Datagrams.Classio.netty.channel.udt.nioNetty
NioUdtMessageRendezvousChannelMessage Rendezvous for UDT Datagrams.Classio.netty.channel.udt.nioNetty
NioUdtProviderUDT NIO components provider:Provides ChannelFactory for UDT channels.Classio.netty.channel.udt.nioNetty
OioByteStreamChannelAbstract base class for OIO Channels that are based on streams.Classio.netty.channel.oioNetty
OioDatagramChannelAn OIO datagram Channel that sends and receives anSee Also:AddressedEnvelope, Classio.netty.channel.socket.oioNetty
OioEventLoopGroupEventLoopGroup which is used to handle OIO Channel's.Classio.netty.channel.oioNetty
OioSctpChannelSctpChannel implementation which use blocking mode and allows to read / writeSctpMessages to the underlying SctpChannel.Classio.netty.channel.sctp.oioNetty
OioSctpServerChannelSctpServerChannel implementation which use blocking mode to accept newconnections and create the OioSctpChannel for them.Classio.netty.channel.sctp.oioNetty
OioServerSocketChannelServerSocketChannel which accepts new connections and create the OioSocketChannel's for them.Classio.netty.channel.socket.oioNetty
OioServerSocketChannelConfigA ServerSocketChannelConfig for a OioServerSocketChannel.Interfaceio.netty.channel.socket.oioNetty
OioSocketChannelClassio.netty.channel.socket.oioNetty
OioSocketChannelConfigA ChannelConfig for a OioSocketChannel.Interfaceio.netty.channel.socket.oioNetty
PendingWriteQueueA queue of write operations which are pending for later execution.Classio.netty.channelNetty
RecvByteBufAllocatorAllocates a new receive buffer whose capacity is probably large enough to read all inbound data and small enoughnot to waste its space.Interfaceio.netty.channelNetty
RecvByteBufAllocator .HandleInterfaceio.netty.channel.RecvByteBufAllocatorNetty
ReflectiveChannelFactoryA ChannelFactory that instantiates a new Channel by invoking its default constructor reflectively.Classio.netty.channelNetty
RxtxChannelA channel to a serial device using the RXTX library.Classio.netty.channel.rxtxNetty
RxtxChannelConfigA configuration class for RXTX device connections.Interfaceio.netty.channel.rxtxNetty
RxtxChannelConfig .Databits5 data bits will be used for each character (ie.Classio.netty.channel.rxtx.RxtxChannelConfigNetty
RxtxChannelConfig .ParitybitAn even parity bit will be sent with each data character, ie.Classio.netty.channel.rxtx.RxtxChannelConfigNetty
RxtxChannelConfig .Stopbits1 stop bit will be sent at the end of every character1.Classio.netty.channel.rxtx.RxtxChannelConfigNetty
RxtxChannelOptionClassio.netty.channel.rxtxNetty
RxtxDeviceAddressA SocketAddress subclass to wrap the serial port address of a RXTXdevice (e.Classio.netty.channel.rxtxNetty
SctpChannelA SCTP/IP Channel interface for single SCTP association.Interfaceio.netty.channel.sctpNetty
SctpChannelConfigA ChannelConfig for a SctpChannel.Interfaceio.netty.channel.sctpNetty
SctpChannelOptionClassio.netty.channel.sctpNetty
SctpMessageClassio.netty.channel.sctpNetty
SctpNotificationHandlerAbstractNotificationHandler implementation which will handle all Notifications by trigger aNotification user event in the ChannelPipeline of a SctpChannel.Classio.netty.channel.sctpNetty
SctpServerChannelA SCTP/IP ServerChannel which accepts incoming SCTP/IP associations.Interfaceio.netty.channel.sctpNetty
SctpServerChannelConfigA ChannelConfig for a SctpServerChannelConfig.Interfaceio.netty.channel.sctpNetty
ServerChannelA Channel that accepts an incoming connection attempt and createsits child Channels by accepting them.Interfaceio.netty.channelNetty
ServerDomainSocketChannelInterfaceio.netty.channel.unixNetty
ServerSocketChannelA TCP/IP ServerChannel which accepts incoming TCP/IP connections.Interfaceio.netty.channel.socketNetty
ServerSocketChannelConfigA ChannelConfig for a ServerSocketChannel.Interfaceio.netty.channel.socketNetty
SimpleChannelInboundHandlerChannelHandler which allows to explicit only handle a specific type of messages.Classio.netty.channelNetty
SingleThreadEventLoopAbstract base class for EventLoops that execute all its submitted tasks in a single thread.Classio.netty.channelNetty
SocketChannelA TCP/IP socket Channel.Interfaceio.netty.channel.socketNetty
SocketChannelConfigA ChannelConfig for a SocketChannel.Interfaceio.netty.channel.socketNetty
ThreadPerChannelEventLoopSingleThreadEventLoop which is used to handle OIO Channel's.Classio.netty.channelNetty
ThreadPerChannelEventLoopGroupAn EventLoopGroup that creates one EventLoop per Channel.Classio.netty.channelNetty
UdtChannelSupported UDT UdtChannel are available via NioUdtProvider.Interfaceio.netty.channel.udtNetty
UdtChannelConfigA ChannelConfig for a UdtChannel.Interfaceio.netty.channel.udtNetty
UdtChannelOptionClassio.netty.channel.udtNetty
UdtMessageThe message container that is used for TypeUDT.Classio.netty.channel.udtNetty
UdtServerChannelSupported UDT UdtServerChannel are available via NioUdtProvider.Interfaceio.netty.channel.udtNetty
UdtServerChannelConfigA ChannelConfig for a UdtServerChannel.Interfaceio.netty.channel.udtNetty
UnixChannelChannel that expose operations that are only present on UNIX like systems.Interfaceio.netty.channel.unixNetty