Uses of Class
io.netty.util.internal.SuppressJava6Requirement
-
Packages that use SuppressJava6Requirement Package Description io.netty.buffer Abstraction of a byte buffer - the fundamental data structure to represent a low-level binary and text message.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.codec.compression io.netty.handler.codec.http.websocketx Encoder, decoder, handshakers and their related message types for Web Socket data frames.io.netty.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames.io.netty.handler.codec.spdy Encoder, decoder, session handler and their related message types for the SPDY protocol.io.netty.handler.ssl SSL · TLS implementation based onSSLEngine
io.netty.handler.ssl.util Utility classes that helps easier development of TLS/SSL applications.io.netty.resolver.dns An alternative to Java's built-in domain name lookup mechanism that resolves a domain name asynchronously, which supports the queries of an arbitrary DNS record type as well.io.netty.util.internal Internal-use-only utilities which is not allowed to be used outside Netty. -
-
Uses of SuppressJava6Requirement in io.netty.buffer
Classes in io.netty.buffer with annotations of type SuppressJava6Requirement Modifier and Type Class Description (package private) class
AdaptivePoolingAllocator
An auto-tuning pooling allocator, that follows an anti-generational hypothesis.private static class
AdaptivePoolingAllocator.Magazine
-
Uses of SuppressJava6Requirement in io.netty.channel
Constructors in io.netty.channel with annotations of type SuppressJava6Requirement Constructor Description ChannelException(java.lang.String message, java.lang.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(java.net.InetAddress multicastAddress, java.net.NetworkInterface networkInterface, java.net.InetAddress sourceToBlock, ChannelPromise promise)
Block the given sourceToBlock address for the given multicastAddress on the given networkInterfacestatic java.net.ProtocolFamily
ProtocolFamilyConverter. convert(InternetProtocolFamily family)
Convert theInternetProtocolFamily
.(package private) static void
NioDomainSocketUtil. deleteSocketFile(java.net.SocketAddress address)
protected void
NioServerDomainSocketChannel. doBind(java.net.SocketAddress localAddress)
protected void
NioServerSocketChannel. doBind(java.net.SocketAddress localAddress)
protected void
NioDomainSocketChannel. doShutdownOutput()
protected void
NioSocketChannel. doShutdownOutput()
(package private) static java.lang.reflect.Method
SelectorProviderUtil. findOpenMethod(java.lang.String methodName)
(package private) static <T> T
NioChannelOption. getOption(java.nio.channels.Channel jdkChannel, NioChannelOption<T> option)
(package private) static ChannelOption[]
NioChannelOption. getOptions(java.nio.channels.Channel jdkChannel)
private int
NioDomainSocketChannel.NioDomainSocketChannelConfig. getReceiveBufferSize()
private int
NioDomainSocketChannel.NioDomainSocketChannelConfig. getSendBufferSize()
ChannelFuture
NioDatagramChannel. joinGroup(java.net.InetAddress multicastAddress, java.net.NetworkInterface networkInterface, java.net.InetAddress source, ChannelPromise promise)
ChannelFuture
NioDatagramChannel. leaveGroup(java.net.InetAddress multicastAddress, java.net.NetworkInterface networkInterface, java.net.InetAddress source, ChannelPromise promise)
protected java.net.SocketAddress
NioDomainSocketChannel. localAddress0()
protected java.net.SocketAddress
NioServerDomainSocketChannel. localAddress0()
(package private) static <C extends java.nio.channels.Channel>
CSelectorProviderUtil. newChannel(java.lang.reflect.Method method, java.nio.channels.spi.SelectorProvider provider, InternetProtocolFamily family)
private static <C extends java.nio.channels.Channel>
CSelectorProviderUtil. newChannel(java.lang.reflect.Method method, java.nio.channels.spi.SelectorProvider provider, java.lang.Object family)
(package private) static <C extends java.nio.channels.Channel>
CSelectorProviderUtil. newDomainSocketChannel(java.lang.reflect.Method method, java.nio.channels.spi.SelectorProvider provider)
private static java.nio.channels.DatagramChannel
NioDatagramChannel. newSocket(java.nio.channels.spi.SelectorProvider provider, InternetProtocolFamily ipFamily)
protected java.net.SocketAddress
NioDomainSocketChannel. remoteAddress0()
(package private) static <T> boolean
NioChannelOption. setOption(java.nio.channels.Channel jdkChannel, NioChannelOption<T> option, T value)
private NioDomainSocketChannel.NioDomainSocketChannelConfig
NioDomainSocketChannel.NioDomainSocketChannelConfig. setReceiveBufferSize(int receiveBufferSize)
private NioDomainSocketChannel.NioDomainSocketChannelConfig
NioDomainSocketChannel.NioDomainSocketChannelConfig. setSendBufferSize(int sendBufferSize)
private void
NioDomainSocketChannel. shutdownInput0()
private void
NioSocketChannel. shutdownInput0()
Constructors in io.netty.channel.socket.nio with annotations of type SuppressJava6Requirement Constructor Description NioServerDomainSocketChannel(java.nio.channels.ServerSocketChannel channel)
Create a new instance using the givenServerSocketChannel
. -
Uses of SuppressJava6Requirement in io.netty.handler.codec.compression
Methods in io.netty.handler.codec.compression with annotations of type SuppressJava6Requirement Modifier and Type Method Description private void
JdkZlibEncoder. deflate(ByteBuf out)
-
Uses of SuppressJava6Requirement in io.netty.handler.codec.http.websocketx
Methods in io.netty.handler.codec.http.websocketx with annotations of type SuppressJava6Requirement Modifier and Type Method Description (package private) static java.lang.String
WebSocketUtil. base64(byte[] data)
Performs base64 encoding on the specified data -
Uses of SuppressJava6Requirement in io.netty.handler.codec.http2
Constructors in io.netty.handler.codec.http2 with annotations of type SuppressJava6Requirement Constructor Description Http2Exception(Http2Error error, java.lang.String message, Http2Exception.ShutdownHint shutdownHint, boolean shared)
-
Uses of SuppressJava6Requirement in io.netty.handler.codec.spdy
Methods in io.netty.handler.codec.spdy with annotations of type SuppressJava6Requirement Modifier and Type Method Description private boolean
SpdyHeaderBlockZlibEncoder. compressInto(ByteBuf compressed)
Constructors in io.netty.handler.codec.spdy with annotations of type SuppressJava6Requirement Constructor Description SpdyProtocolException(java.lang.String message, boolean shared)
-
Uses of SuppressJava6Requirement in io.netty.handler.ssl
Classes in io.netty.handler.ssl with annotations of type SuppressJava6Requirement Modifier and Type Class Description (package private) class
BouncyCastleAlpnSslEngine
(package private) class
BouncyCastleAlpnSslUtils
(package private) class
EnhancingX509ExtendedTrustManager
Wraps an existingX509ExtendedTrustManager
and enhances theCertificateException
that is thrown because of hostname validation.(package private) class
ExtendedOpenSslSession
Delegates all operations to a wrappedOpenSslSession
except the methods defined byExtendedSSLSession
itself.(package private) class
Java8SslUtils
(package private) class
JdkAlpnSslEngine
(package private) class
JdkAlpnSslUtils
(package private) class
OpenSslX509TrustManagerWrapper
Utility which allows to wrapX509TrustManager
implementations with the internal implementation used bySSLContextImpl
that provides extended verification.private static class
ReferenceCountedOpenSslClientContext.ExtendedTrustManagerVerifyCallback
private static class
ReferenceCountedOpenSslServerContext.ExtendedTrustManagerVerifyCallback
private static class
ResumptionController.X509ExtendedWrapTrustManager
Methods in io.netty.handler.ssl with annotations of type SuppressJava6Requirement Modifier and Type Method Description (package private) static void
JdkSslServerContext. checkIfWrappingTrustManagerIsSupported()
Deprecated.javax.net.ssl.SSLSession
JdkSslEngine. getHandshakeSession()
javax.net.ssl.SSLParameters
ReferenceCountedOpenSslEngine. getSSLParameters()
(package private) static void
Java7SslParametersUtils. setAlgorithmConstraints(javax.net.ssl.SSLParameters sslParameters, java.lang.Object algorithmConstraints)
Utility method that is used byOpenSslEngine
and so allow use not have any reference toAlgorithmConstraints
in the code.(package private) static void
Java7SslParametersUtils. setEndpointIdentificationAlgorithm(javax.net.ssl.SSLParameters sslParameters, java.lang.String endpointIdentificationAlgorithm)
Utility method for calling thesetEndpointIdentitificationAlgorithm
method, which was introduced in Java 7.void
ReferenceCountedOpenSslEngine. setSSLParameters(javax.net.ssl.SSLParameters sslParameters)
private static void
ReferenceCountedOpenSslClientContext. setVerifyCallback(long ctx, OpenSslEngineMap engineMap, javax.net.ssl.X509TrustManager manager)
private static void
ReferenceCountedOpenSslServerContext. setVerifyCallback(long ctx, OpenSslEngineMap engineMap, javax.net.ssl.X509TrustManager manager)
private static int
ReferenceCountedOpenSslContext.AbstractCertificateVerifier. translateToError(java.lang.Throwable cause)
(package private) static boolean
ReferenceCountedOpenSslContext. useExtendedTrustManager(javax.net.ssl.X509TrustManager trustManager)
javax.net.ssl.X509TrustManager
OpenSslX509TrustManagerWrapper.UnsafeTrustManagerWrapper. wrapIfNeeded(javax.net.ssl.X509TrustManager manager)
javax.net.ssl.TrustManager
ResumptionController. wrapIfNeeded(javax.net.ssl.TrustManager tm)
private static javax.net.ssl.TrustManager[]
JdkSslServerContext. wrapTrustManagerIfNeeded(javax.net.ssl.TrustManager[] trustManagers, ResumptionController resumptionController)
Deprecated. -
Uses of SuppressJava6Requirement in io.netty.handler.ssl.util
Classes in io.netty.handler.ssl.util with annotations of type SuppressJava6Requirement Modifier and Type Class Description (package private) class
X509KeyManagerWrapper
(package private) class
X509TrustManagerWrapper
Methods in io.netty.handler.ssl.util with annotations of type SuppressJava6Requirement Modifier and Type Method Description (package private) static java.lang.String[]
OpenJdkSelfSignedCertGenerator. generate(java.lang.String fqdn, java.security.KeyPair keypair, java.security.SecureRandom random, java.util.Date notBefore, java.util.Date notAfter, java.lang.String algorithm)
void
LazyX509Certificate. verify(java.security.PublicKey key, java.security.Provider sigProvider)
private static void
SimpleKeyManagerFactory.SimpleKeyManagerFactorySpi. wrapIfNeeded(javax.net.ssl.KeyManager[] keyManagers)
private static void
SimpleTrustManagerFactory.SimpleTrustManagerFactorySpi. wrapIfNeeded(javax.net.ssl.TrustManager[] trustManagers)
-
Uses of SuppressJava6Requirement in io.netty.resolver.dns
Constructors in io.netty.resolver.dns with annotations of type SuppressJava6Requirement Constructor Description DnsErrorCauseException(java.lang.String message, DnsResponseCode code, boolean shared)
DnsResolveContextException(java.lang.String message, boolean shared)
-
Uses of SuppressJava6Requirement in io.netty.util.internal
Classes in io.netty.util.internal with annotations of type SuppressJava6Requirement Modifier and Type Class Description (package private) class
LongAdderCounter
(package private) class
PlatformDependent0
ThePlatformDependent
operations which requires access tosun.misc.*
.Methods in io.netty.util.internal with annotations of type SuppressJava6Requirement Modifier and Type Method Description static void
ThrowableUtil. addSuppressed(java.lang.Throwable target, java.lang.Throwable suppressed)
static void
SocketUtils. bind(java.nio.channels.DatagramChannel networkChannel, java.net.SocketAddress address)
static void
SocketUtils. bind(java.nio.channels.SocketChannel socketChannel, java.net.SocketAddress address)
private static boolean
NativeLibraryLoader.NoexecVolumeDetector. canExecuteExecutable(java.io.File file)
static java.io.File
PlatformDependent. createTempFile(java.lang.String prefix, java.lang.String suffix, java.io.File directory)
static java.lang.Throwable[]
ThrowableUtil. getSuppressed(java.lang.Throwable source)
static java.net.InetAddress
SocketUtils. loopbackAddress()
static <C> java.util.Deque<C>
PlatformDependent. newConcurrentDeque()
Returns a new concurrentDeque
.private static void
NativeLibraryLoader. rethrowWithMoreDetailsIfPossible(java.lang.String name, java.lang.NoSuchMethodError error)
private static int
PlatformDependent. toIntExact8(long value)
-