Uses of Class
io.netty5.util.DefaultAttributeMap
-
Packages that use DefaultAttributeMap Package Description 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 virtualChannelthat 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.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.nio NIO-based socket channel API implementation - recommended for a large number of connections (>= 1000). -
-
Uses of DefaultAttributeMap in io.netty5.channel
Subclasses of DefaultAttributeMap in io.netty5.channel Modifier and Type Class Description classAbstractChannel<P extends Channel,L extends SocketAddress,R extends SocketAddress>A skeletalChannelimplementation.classAbstractServerChannel<P extends Channel,L extends SocketAddress,R extends SocketAddress>A skeletal server-sideChannelimplementation. -
Uses of DefaultAttributeMap in io.netty5.channel.embedded
Subclasses of DefaultAttributeMap in io.netty5.channel.embedded Modifier and Type Class Description classEmbeddedChannelBase class forChannelimplementations that are used in an embedded fashion. -
Uses of DefaultAttributeMap in io.netty5.channel.epoll
Subclasses of DefaultAttributeMap in io.netty5.channel.epoll Modifier and Type Class Description classEpollDatagramChannelDatagramChannelimplementation that uses linux EPOLL Edge-Triggered Mode for maximal performance.classEpollServerSocketChannelServerSocketChannelimplementation that uses linux EPOLL Edge-Triggered Mode for maximal performance.classEpollSocketChannelSocketChannelimplementation that uses linux EPOLL Edge-Triggered Mode for maximal performance. -
Uses of DefaultAttributeMap in io.netty5.channel.kqueue
Subclasses of DefaultAttributeMap in io.netty5.channel.kqueue Modifier and Type Class Description classKQueueDatagramChannelDatagramChannelimplementation that uses KQueue.classKQueueServerSocketChannelServerSocketChannelimplementation that uses KQueue.classKQueueSocketChannelSocketChannelimplementation that uses KQueue. -
Uses of DefaultAttributeMap in io.netty5.channel.local
Subclasses of DefaultAttributeMap in io.netty5.channel.local Modifier and Type Class Description classLocalChannelAChannelfor the local transport.classLocalServerChannelAServerChannelfor the local transport which allows in VM communication. -
Uses of DefaultAttributeMap in io.netty5.channel.nio
Subclasses of DefaultAttributeMap in io.netty5.channel.nio Modifier and Type Class Description classAbstractNioByteChannel<P extends Channel,L extends SocketAddress,R extends SocketAddress>AbstractNioChannelbase class forChannels that operate on bytes.classAbstractNioChannel<P extends Channel,L extends SocketAddress,R extends SocketAddress>Abstract base class forChannelimplementations which use a Selector based approach.classAbstractNioMessageChannel<P extends Channel,L extends SocketAddress,R extends SocketAddress>AbstractNioChannelbase class forChannels that operate on messages. -
Uses of DefaultAttributeMap in io.netty5.channel.socket.nio
Subclasses of DefaultAttributeMap in io.netty5.channel.socket.nio Modifier and Type Class Description classNioDatagramChannelAn NIODatagramChannelthat sends and receives anAddressedEnvelope.classNioServerSocketChannelAServerSocketChannelimplementation which uses NIO selector based implementation to accept new connections.classNioSocketChannelSocketChannelwhich uses NIO selector based implementation.
-