Uses of Interface
io.netty.util.AttributeMap
-
Packages that use AttributeMap Package Description io.netty.channel The core channel API which is asynchronous and event-driven abstraction of various transports such as a NIO Channel.io.netty.channel.embedded A virtualChannelthat helps wrapping a series of handlers to unit test the handlers or use them in non-I/O context.io.netty.channel.epoll Optimized transport for linux which uses EPOLL Edge-Triggered Mode for maximal performance.io.netty.channel.kqueue BSD specific transport.io.netty.channel.local A virtual transport that enables the communication between the two parties in the same virtual machine.io.netty.channel.nio NIO-based channel API implementation - recommended for a large number of connections (>= 1000).io.netty.channel.oio Old blocking I/O based channel API implementation - recommended for a small number of connections (< 1000).io.netty.channel.socket Abstract TCP and UDP socket interfaces which extend the core channel API.io.netty.channel.socket.nio NIO-based socket channel API implementation - recommended for a large number of connections (>= 1000).io.netty.channel.socket.oio Old blocking I/O based socket channel API implementation - recommended for a small number of connections (< 1000).io.netty.channel.unix Unix specific transport.io.netty.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames.io.netty.handler.ssl io.netty.util Utility classes used across multiple packages. -
-
Uses of AttributeMap in io.netty.channel
Subinterfaces of AttributeMap in io.netty.channel Modifier and Type Interface Description interfaceChannelA nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.interfaceChannelHandlerContextEnables aChannelHandlerto interact with itsChannelPipelineand other handlers.interfaceServerChannelClasses in io.netty.channel that implement AttributeMap Modifier and Type Class Description classAbstractChannelA skeletalChannelimplementation.classAbstractServerChannelA skeletal server-sideChannelimplementation. -
Uses of AttributeMap in io.netty.channel.embedded
Classes in io.netty.channel.embedded that implement AttributeMap Modifier and Type Class Description classEmbeddedChannelBase class forChannelimplementations that are used in an embedded fashion. -
Uses of AttributeMap in io.netty.channel.epoll
Classes in io.netty.channel.epoll that implement AttributeMap Modifier and Type Class Description classAbstractEpollServerChannelclassAbstractEpollStreamChannelclassEpollDatagramChannelDatagramChannelimplementation that uses linux EPOLL Edge-Triggered Mode for maximal performance.classEpollDomainDatagramChannelclassEpollDomainSocketChannelclassEpollServerDomainSocketChannelclassEpollServerSocketChannelServerSocketChannelimplementation that uses linux EPOLL Edge-Triggered Mode for maximal performance.classEpollSocketChannelSocketChannelimplementation that uses linux EPOLL Edge-Triggered Mode for maximal performance. -
Uses of AttributeMap in io.netty.channel.kqueue
Classes in io.netty.channel.kqueue that implement AttributeMap Modifier and Type Class Description classAbstractKQueueServerChannelclassAbstractKQueueStreamChannelclassKQueueDatagramChannelclassKQueueDomainDatagramChannelclassKQueueDomainSocketChannelclassKQueueServerDomainSocketChannelclassKQueueServerSocketChannelclassKQueueSocketChannel -
Uses of AttributeMap in io.netty.channel.local
Classes in io.netty.channel.local that implement AttributeMap Modifier and Type Class Description classLocalChannelAChannelfor the local transport.classLocalServerChannelAServerChannelfor the local transport which allows in VM communication. -
Uses of AttributeMap in io.netty.channel.nio
Classes in io.netty.channel.nio that implement AttributeMap Modifier and Type Class Description classAbstractNioByteChannelAbstractNioChannelbase class forChannels that operate on bytes.classAbstractNioChannelAbstract base class forChannelimplementations which use a Selector based approach.classAbstractNioMessageChannelAbstractNioChannelbase class forChannels that operate on messages. -
Uses of AttributeMap in io.netty.channel.oio
Classes in io.netty.channel.oio that implement AttributeMap Modifier and Type Class Description classAbstractOioByteChannelDeprecated.use NIO / EPOLL / KQUEUE transport.classAbstractOioChannelDeprecated.use NIO / EPOLL / KQUEUE transport.classAbstractOioMessageChannelDeprecated.use NIO / EPOLL / KQUEUE transport.classOioByteStreamChannelDeprecated.use NIO / EPOLL / KQUEUE transport. -
Uses of AttributeMap in io.netty.channel.socket
Subinterfaces of AttributeMap in io.netty.channel.socket Modifier and Type Interface Description interfaceDatagramChannelA UDP/IPChannel.interfaceDuplexChannelA duplexChannelthat has two sides that can be shutdown independently.interfaceServerSocketChannelA TCP/IPServerChannelwhich accepts incoming TCP/IP connections.interfaceSocketChannelA TCP/IP socketChannel. -
Uses of AttributeMap in io.netty.channel.socket.nio
Classes in io.netty.channel.socket.nio that implement AttributeMap Modifier and Type Class Description classNioDatagramChannelAn NIO datagramChannelthat sends and receives anAddressedEnvelope.classNioServerSocketChannelAServerSocketChannelimplementation which uses NIO selector based implementation to accept new connections.classNioSocketChannelSocketChannelwhich uses NIO selector based implementation. -
Uses of AttributeMap in io.netty.channel.socket.oio
Classes in io.netty.channel.socket.oio that implement AttributeMap Modifier and Type Class Description classOioDatagramChannelDeprecated.use NIO / EPOLL / KQUEUE transport.classOioServerSocketChannelDeprecated.use NIO / EPOLL / KQUEUE transport.classOioSocketChannelDeprecated.use NIO / EPOLL / KQUEUE transport. -
Uses of AttributeMap in io.netty.channel.unix
Subinterfaces of AttributeMap in io.netty.channel.unix Modifier and Type Interface Description interfaceDomainDatagramChannelAUnixChannelthat supports communication via UNIX domain datagram sockets.interfaceDomainSocketChannelAUnixChannelthat supports communication via Unix Domain Socket.interfaceServerDomainSocketChannelinterfaceUnixChannelChannelthat expose operations that are only present onUNIXlike systems. -
Uses of AttributeMap in io.netty.handler.codec.http2
Subinterfaces of AttributeMap in io.netty.handler.codec.http2 Modifier and Type Interface Description interfaceHttp2StreamChannel -
Uses of AttributeMap in io.netty.handler.ssl
Methods in io.netty.handler.ssl that return AttributeMap Modifier and Type Method Description AttributeMapSslContext. attributes()Returns theAttributeMapthat belongs to thisSslContext. -
Uses of AttributeMap in io.netty.util
Classes in io.netty.util that implement AttributeMap Modifier and Type Class Description classDefaultAttributeMapDefaultAttributeMapimplementation which not exibit any blocking behaviour on attribute lookup while using a copy-on-write approach on the modify path.
Attributes lookup and remove exibitO(logn)time worst-case complexity, henceattribute::set(null)is to be preferred toremove.
-