Uses of Interface
io.netty.channel.Channel.Unsafe
-
Packages that use Channel.Unsafe Package Description io.netty.bootstrap The helper classes with fluent API which enable an easy implementation of typical client side and server side channel initialization.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 virtualChannel
that 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.nio NIO-based socket channel API implementation - recommended for a large number of connections (>= 1000).io.netty.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames. -
-
Uses of Channel.Unsafe in io.netty.bootstrap
Classes in io.netty.bootstrap that implement Channel.Unsafe Modifier and Type Class Description private class
FailedChannel.FailedChannelUnsafe
-
Uses of Channel.Unsafe in io.netty.channel
Classes in io.netty.channel that implement Channel.Unsafe Modifier and Type Class Description protected class
AbstractChannel.AbstractUnsafe
Channel.Unsafe
implementation which sub-classes must extend and use.private class
AbstractServerChannel.DefaultServerUnsafe
Fields in io.netty.channel declared as Channel.Unsafe Modifier and Type Field Description private Channel.Unsafe
AbstractChannel. unsafe
private Channel.Unsafe
DefaultChannelPipeline.HeadContext. unsafe
Methods in io.netty.channel that return Channel.Unsafe Modifier and Type Method Description Channel.Unsafe
AbstractChannel. unsafe()
Channel.Unsafe
Channel. unsafe()
Returns an internal-use-only object that provides unsafe operations. -
Uses of Channel.Unsafe in io.netty.channel.embedded
Classes in io.netty.channel.embedded that implement Channel.Unsafe Modifier and Type Class Description private class
EmbeddedChannel.EmbeddedUnsafe
Fields in io.netty.channel.embedded declared as Channel.Unsafe Modifier and Type Field Description (package private) Channel.Unsafe
EmbeddedChannel.EmbeddedUnsafe. wrapped
Methods in io.netty.channel.embedded that return Channel.Unsafe Modifier and Type Method Description Channel.Unsafe
EmbeddedChannel. unsafe()
-
Uses of Channel.Unsafe in io.netty.channel.epoll
Classes in io.netty.channel.epoll that implement Channel.Unsafe Modifier and Type Class Description protected class
AbstractEpollChannel.AbstractEpollUnsafe
(package private) class
AbstractEpollServerChannel.EpollServerSocketUnsafe
(package private) class
AbstractEpollStreamChannel.EpollStreamUnsafe
(package private) class
EpollDatagramChannel.EpollDatagramChannelUnsafe
(package private) class
EpollDomainDatagramChannel.EpollDomainDatagramChannelUnsafe
private class
EpollDomainSocketChannel.EpollDomainUnsafe
private class
EpollSocketChannel.EpollSocketChannelUnsafe
-
Uses of Channel.Unsafe in io.netty.channel.kqueue
Classes in io.netty.channel.kqueue that implement Channel.Unsafe Modifier and Type Class Description class
AbstractKQueueChannel.AbstractKQueueUnsafe
(package private) class
AbstractKQueueServerChannel.KQueueServerSocketUnsafe
(package private) class
AbstractKQueueStreamChannel.KQueueStreamUnsafe
(package private) class
KQueueDatagramChannel.KQueueDatagramChannelUnsafe
(package private) class
KQueueDomainDatagramChannel.KQueueDomainDatagramChannelUnsafe
private class
KQueueDomainSocketChannel.KQueueDomainUnsafe
private class
KQueueSocketChannel.KQueueSocketChannelUnsafe
-
Uses of Channel.Unsafe in io.netty.channel.local
Classes in io.netty.channel.local that implement Channel.Unsafe Modifier and Type Class Description private class
LocalChannel.LocalUnsafe
-
Uses of Channel.Unsafe in io.netty.channel.nio
Subinterfaces of Channel.Unsafe in io.netty.channel.nio Modifier and Type Interface Description static interface
AbstractNioChannel.NioUnsafe
SpecialChannel.Unsafe
sub-type which allows to access the underlyingSelectableChannel
Classes in io.netty.channel.nio that implement Channel.Unsafe Modifier and Type Class Description protected class
AbstractNioByteChannel.NioByteUnsafe
protected class
AbstractNioChannel.AbstractNioUnsafe
private class
AbstractNioMessageChannel.NioMessageUnsafe
-
Uses of Channel.Unsafe in io.netty.channel.oio
Classes in io.netty.channel.oio that implement Channel.Unsafe Modifier and Type Class Description private class
AbstractOioChannel.DefaultOioUnsafe
Deprecated. -
Uses of Channel.Unsafe in io.netty.channel.socket.nio
Classes in io.netty.channel.socket.nio that implement Channel.Unsafe Modifier and Type Class Description private class
NioSocketChannel.NioSocketChannelUnsafe
-
Uses of Channel.Unsafe in io.netty.handler.codec.http2
Classes in io.netty.handler.codec.http2 that implement Channel.Unsafe Modifier and Type Class Description private class
AbstractHttp2StreamChannel.Http2ChannelUnsafe
Methods in io.netty.handler.codec.http2 that return Channel.Unsafe Modifier and Type Method Description Channel.Unsafe
AbstractHttp2StreamChannel. unsafe()
-