Uses of Class
io.netty.util.internal.SuppressJava6Requirement
-
Packages that use SuppressJava6Requirement 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.socket.nio NIO-based socket channel API implementation - recommended for a large number of connections (>= 1000).io.netty.handler.ssl.util Utility classes that helps easier development of TLS/SSL applications.io.netty.util.internal Internal-use-only utilities which is not allowed to be used outside Netty. -
-
Uses of SuppressJava6Requirement in io.netty.channel
Constructors in io.netty.channel with annotations of type SuppressJava6Requirement Constructor Description ChannelException(String message, Throwable cause, boolean shared)
-
Uses of SuppressJava6Requirement in io.netty.channel.socket.nio
Classes in io.netty.channel.socket.nio with annotations of type SuppressJava6Requirement Modifier and Type Class Description class
NioChannelOption<T>
ProvidesChannelOption
over a givenSocketOption
which is then passed through the underlyingNetworkChannel
.Methods in io.netty.channel.socket.nio with annotations of type SuppressJava6Requirement Modifier and Type Method Description ChannelFuture
NioDatagramChannel. block(InetAddress multicastAddress, NetworkInterface networkInterface, InetAddress sourceToBlock, ChannelPromise promise)
Block the given sourceToBlock address for the given multicastAddress on the given networkInterfaceprotected void
NioServerSocketChannel. doBind(SocketAddress localAddress)
protected void
NioSocketChannel. doShutdownOutput()
ChannelFuture
NioDatagramChannel. joinGroup(InetAddress multicastAddress, NetworkInterface networkInterface, InetAddress source, ChannelPromise promise)
ChannelFuture
NioDatagramChannel. leaveGroup(InetAddress multicastAddress, NetworkInterface networkInterface, InetAddress source, ChannelPromise promise)
-
Uses of SuppressJava6Requirement in io.netty.handler.ssl.util
Methods in io.netty.handler.ssl.util with annotations of type SuppressJava6Requirement Modifier and Type Method Description void
LazyX509Certificate. verify(PublicKey key, Provider sigProvider)
-
Uses of SuppressJava6Requirement in io.netty.util.internal
Methods in io.netty.util.internal with annotations of type SuppressJava6Requirement Modifier and Type Method Description static void
ThrowableUtil. addSuppressed(Throwable target, Throwable suppressed)
static void
SocketUtils. bind(DatagramChannel networkChannel, SocketAddress address)
static void
SocketUtils. bind(SocketChannel socketChannel, SocketAddress address)
static File
PlatformDependent. createTempFile(String prefix, String suffix, File directory)
static InetAddress
SocketUtils. loopbackAddress()
static <C> Deque<C>
PlatformDependent. newConcurrentDeque()
Returns a new concurrentDeque
.
-