Uses of Interface
io.netty.util.internal.logging.InternalLogger
-
Packages that use InternalLogger 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.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.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.sctp.nio NIO-based SCTP Channel API implementation - recommended for a large number of connections (>= 1000).io.netty.channel.sctp.oio Old blocking I/O based SCTP 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.handler.codec.compression io.netty.handler.codec.http Encoder, decoder and their related message types for HTTP.io.netty.handler.codec.http.cookie This package contains Cookie related classes.io.netty.handler.codec.http.cors This package contains Cross Origin Resource Sharing (CORS) related classes.io.netty.handler.codec.http.multipart HTTP multipart support.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.socksx Encoder, decoder and their related message types for SOCKS protocol.io.netty.handler.flow Package to control the flow of messages.io.netty.handler.logging Logs the I/O events for debugging purpose.io.netty.handler.pcap Capture data and write into Pcap format which helps in troubleshooting.io.netty.handler.proxy Adds support for client connections via proxy protocols such as SOCKS and HTTP CONNECT tunnelingio.netty.handler.ssl SSL · TLS implementation based onSSLEngine
io.netty.handler.ssl.ocsp Certificate validation using OCSPio.netty.handler.ssl.util Utility classes that helps easier development of TLS/SSL applications.io.netty.handler.stream Writes very large data stream asynchronously neither spending a lot of memory nor gettingOutOfMemoryError
.io.netty.handler.traffic Implementation of a Traffic Shaping Handler and Dynamic Statistics.io.netty.resolver Resolves an arbitrary string that represents the name of an endpoint into an address.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.resolver.dns.macos MacOS specific nameserver resolution.io.netty.util Utility classes used across multiple packages.io.netty.util.concurrent Utility classes for concurrent / async tasks.io.netty.util.internal Internal-use-only utilities which is not allowed to be used outside Netty.io.netty.util.internal.logging Internal-use-only logging API which is not allowed to be used outside Netty. -
-
Uses of InternalLogger in io.netty.bootstrap
Fields in io.netty.bootstrap declared as InternalLogger Modifier and Type Field Description private static InternalLogger
Bootstrap. logger
private static InternalLogger
ChannelInitializerExtensions. logger
private static InternalLogger
ServerBootstrap. logger
Methods in io.netty.bootstrap with parameters of type InternalLogger Modifier and Type Method Description private static void
AbstractBootstrap. setChannelOption(Channel channel, ChannelOption<?> option, java.lang.Object value, InternalLogger logger)
(package private) static void
AbstractBootstrap. setChannelOptions(Channel channel, java.util.Map.Entry<ChannelOption<?>,java.lang.Object>[] options, InternalLogger logger)
-
Uses of InternalLogger in io.netty.buffer
Fields in io.netty.buffer declared as InternalLogger Modifier and Type Field Description private static InternalLogger
AbstractByteBuf. logger
private static InternalLogger
AdaptiveByteBufAllocator. logger
private static InternalLogger
AdvancedLeakAwareByteBuf. logger
private static InternalLogger
ByteBufUtil. logger
private static InternalLogger
PooledByteBufAllocator. logger
private static InternalLogger
PoolThreadCache. logger
-
Uses of InternalLogger in io.netty.channel
Fields in io.netty.channel declared as InternalLogger Modifier and Type Field Description private static InternalLogger
AbstractChannel. logger
private static InternalLogger
AbstractChannelHandlerContext. logger
private static InternalLogger
AbstractCoalescingBufferQueue. logger
private static InternalLogger
ChannelHandlerMask. logger
private static InternalLogger
ChannelInitializer. logger
private static InternalLogger
ChannelOutboundBuffer. logger
private static InternalLogger
CombinedChannelDuplexHandler. logger
private static InternalLogger
DefaultChannelId. logger
(package private) static InternalLogger
DefaultChannelPipeline. logger
private static InternalLogger
DefaultFileRegion. logger
private static InternalLogger
DelegatingChannelPromiseNotifier. logger
private static InternalLogger
MultithreadEventLoopGroup. logger
private static InternalLogger
PendingWriteQueue. logger
-
Uses of InternalLogger in io.netty.channel.embedded
Fields in io.netty.channel.embedded declared as InternalLogger Modifier and Type Field Description private static InternalLogger
EmbeddedChannel. logger
-
Uses of InternalLogger in io.netty.channel.epoll
Fields in io.netty.channel.epoll declared as InternalLogger Modifier and Type Field Description private static InternalLogger
AbstractEpollStreamChannel. logger
private static InternalLogger
EpollEventLoop. logger
private static InternalLogger
EpollServerDomainSocketChannel. logger
private static InternalLogger
Native. logger
-
Uses of InternalLogger in io.netty.channel.kqueue
Fields in io.netty.channel.kqueue declared as InternalLogger Modifier and Type Field Description private static InternalLogger
AbstractKQueueStreamChannel. logger
private static InternalLogger
KQueueEventLoop. logger
private static InternalLogger
KQueueServerDomainSocketChannel. logger
private static InternalLogger
Native. logger
-
Uses of InternalLogger in io.netty.channel.local
Fields in io.netty.channel.local declared as InternalLogger Modifier and Type Field Description private static InternalLogger
LocalChannel. logger
-
Uses of InternalLogger in io.netty.channel.nio
Fields in io.netty.channel.nio declared as InternalLogger Modifier and Type Field Description private static InternalLogger
AbstractNioChannel. logger
private static InternalLogger
NioEventLoop. logger
-
Uses of InternalLogger in io.netty.channel.sctp.nio
Fields in io.netty.channel.sctp.nio declared as InternalLogger Modifier and Type Field Description private static InternalLogger
NioSctpChannel. logger
-
Uses of InternalLogger in io.netty.channel.sctp.oio
Fields in io.netty.channel.sctp.oio declared as InternalLogger Modifier and Type Field Description private static InternalLogger
OioSctpChannel. logger
Deprecated.private static InternalLogger
OioSctpServerChannel. logger
Deprecated. -
Uses of InternalLogger in io.netty.channel.socket
Fields in io.netty.channel.socket declared as InternalLogger Modifier and Type Field Description private static InternalLogger
DefaultDatagramChannelConfig. logger
-
Uses of InternalLogger in io.netty.channel.socket.nio
Fields in io.netty.channel.socket.nio declared as InternalLogger Modifier and Type Field Description private static InternalLogger
NioDomainSocketChannel. logger
private static InternalLogger
NioServerDomainSocketChannel. logger
private static InternalLogger
NioServerSocketChannel. logger
private static InternalLogger
NioSocketChannel. logger
private static InternalLogger
SelectorProviderUtil. logger
-
Uses of InternalLogger in io.netty.channel.socket.oio
Fields in io.netty.channel.socket.oio declared as InternalLogger Modifier and Type Field Description private static InternalLogger
OioDatagramChannel. logger
Deprecated.private static InternalLogger
OioServerSocketChannel. logger
Deprecated.private static InternalLogger
OioSocketChannel. logger
Deprecated. -
Uses of InternalLogger in io.netty.handler.codec.compression
Fields in io.netty.handler.codec.compression declared as InternalLogger Modifier and Type Field Description private static InternalLogger
JdkZlibEncoder. logger
private static InternalLogger
ZlibCodecFactory. logger
-
Uses of InternalLogger in io.netty.handler.codec.http
Fields in io.netty.handler.codec.http declared as InternalLogger Modifier and Type Field Description private InternalLogger
CookieDecoder. logger
Deprecated.private static InternalLogger
HttpObjectAggregator. logger
-
Uses of InternalLogger in io.netty.handler.codec.http.cookie
Fields in io.netty.handler.codec.http.cookie declared as InternalLogger Modifier and Type Field Description private InternalLogger
CookieDecoder. logger
-
Uses of InternalLogger in io.netty.handler.codec.http.cors
Fields in io.netty.handler.codec.http.cors declared as InternalLogger Modifier and Type Field Description private static InternalLogger
CorsHandler. logger
-
Uses of InternalLogger in io.netty.handler.codec.http.multipart
Fields in io.netty.handler.codec.http.multipart declared as InternalLogger Modifier and Type Field Description private static InternalLogger
AbstractDiskHttpData. logger
-
Uses of InternalLogger in io.netty.handler.codec.http.websocketx
Fields in io.netty.handler.codec.http.websocketx declared as InternalLogger Modifier and Type Field Description private static InternalLogger
WebSocket08FrameDecoder. logger
private static InternalLogger
WebSocket08FrameEncoder. logger
private static InternalLogger
WebSocketClientHandshaker07. logger
private static InternalLogger
WebSocketClientHandshaker08. logger
private static InternalLogger
WebSocketClientHandshaker13. logger
protected static InternalLogger
WebSocketServerHandshaker. logger
-
Uses of InternalLogger in io.netty.handler.codec.http2
Fields in io.netty.handler.codec.http2 declared as InternalLogger Modifier and Type Field Description private static InternalLogger
Http2FrameCodec. LOG
private static InternalLogger
AbstractHttp2StreamChannel. logger
private static InternalLogger
DefaultHttp2Connection. logger
private static InternalLogger
DefaultHttp2ConnectionDecoder. logger
private static InternalLogger
DefaultHttp2RemoteFlowController. logger
private static InternalLogger
Http2ConnectionHandler. logger
private static InternalLogger
Http2ControlFrameLimitEncoder. logger
private InternalLogger
Http2FrameLogger. logger
private static InternalLogger
Http2MaxRstFrameListener. logger
private static InternalLogger
Http2ServerUpgradeCodec. logger
private static InternalLogger
Http2StreamChannelBootstrap. logger
Constructors in io.netty.handler.codec.http2 with parameters of type InternalLogger Constructor Description Http2FrameLogger(InternalLogLevel level, InternalLogger logger)
-
Uses of InternalLogger in io.netty.handler.codec.socksx
Fields in io.netty.handler.codec.socksx declared as InternalLogger Modifier and Type Field Description private static InternalLogger
SocksPortUnificationServerHandler. logger
-
Uses of InternalLogger in io.netty.handler.flow
Fields in io.netty.handler.flow declared as InternalLogger Modifier and Type Field Description private static InternalLogger
FlowControlHandler. logger
-
Uses of InternalLogger in io.netty.handler.logging
Fields in io.netty.handler.logging declared as InternalLogger Modifier and Type Field Description protected InternalLogger
LoggingHandler. logger
-
Uses of InternalLogger in io.netty.handler.pcap
Fields in io.netty.handler.pcap declared as InternalLogger Modifier and Type Field Description private InternalLogger
PcapWriteHandler. logger
Logger for logging eventsprivate static InternalLogger
PcapWriter. logger
Logger -
Uses of InternalLogger in io.netty.handler.proxy
Fields in io.netty.handler.proxy declared as InternalLogger Modifier and Type Field Description private static InternalLogger
ProxyHandler. logger
-
Uses of InternalLogger in io.netty.handler.ssl
Fields in io.netty.handler.ssl declared as InternalLogger Modifier and Type Field Description private static InternalLogger
ApplicationProtocolNegotiationHandler. logger
private static InternalLogger
BouncyCastleAlpnSslUtils. logger
private static InternalLogger
BouncyCastlePemReader. logger
private static InternalLogger
CipherSuiteConverter. logger
private static InternalLogger
JdkAlpnSslUtils. logger
private static InternalLogger
JdkSslContext. logger
private static InternalLogger
OpenSsl. logger
private static InternalLogger
PemReader. logger
private static InternalLogger
ReferenceCountedOpenSslContext. logger
private static InternalLogger
ReferenceCountedOpenSslEngine. logger
private static InternalLogger
ReferenceCountedOpenSslServerContext. logger
private static InternalLogger
SslClientHelloHandler. logger
private static InternalLogger
SslHandler. logger
private static InternalLogger
SslMasterKeyHandler. logger
private static InternalLogger
SslUtils. logger
private static InternalLogger
OpenSslX509TrustManagerWrapper. LOGGER
private static InternalLogger
SslMasterKeyHandler.WiresharkSslMasterKeyHandler. wireshark_logger
Methods in io.netty.handler.ssl with parameters of type InternalLogger Modifier and Type Method Description (package private) static java.lang.String
OpenSsl. checkTls13Ciphers(InternalLogger logger, java.lang.String ciphers)
-
Uses of InternalLogger in io.netty.handler.ssl.ocsp
Fields in io.netty.handler.ssl.ocsp declared as InternalLogger Modifier and Type Field Description private static InternalLogger
OcspClient. logger
private static InternalLogger
OcspHttpHandler. LOGGER
-
Uses of InternalLogger in io.netty.handler.ssl.util
Fields in io.netty.handler.ssl.util declared as InternalLogger Modifier and Type Field Description private static InternalLogger
InsecureTrustManagerFactory. logger
private static InternalLogger
OpenJdkSelfSignedCertGenerator. logger
private static InternalLogger
SelfSignedCertificate. logger
-
Uses of InternalLogger in io.netty.handler.stream
Fields in io.netty.handler.stream declared as InternalLogger Modifier and Type Field Description private static InternalLogger
ChunkedWriteHandler. logger
-
Uses of InternalLogger in io.netty.handler.traffic
Fields in io.netty.handler.traffic declared as InternalLogger Modifier and Type Field Description private static InternalLogger
AbstractTrafficShapingHandler. logger
private static InternalLogger
GlobalChannelTrafficShapingHandler. logger
private static InternalLogger
TrafficCounter. logger
-
Uses of InternalLogger in io.netty.resolver
Fields in io.netty.resolver declared as InternalLogger Modifier and Type Field Description private static InternalLogger
AddressResolverGroup. logger
private static InternalLogger
DefaultHostsFileEntriesResolver. logger
private static InternalLogger
HostsFileEntriesProvider.ParserImpl. logger
-
Uses of InternalLogger in io.netty.resolver.dns
Fields in io.netty.resolver.dns declared as InternalLogger Modifier and Type Field Description private static InternalLogger
LoggingDnsQueryLifeCycleObserverFactory. DEFAULT_LOGGER
private static InternalLogger
DefaultDnsServerAddressStreamProvider. logger
private static InternalLogger
DirContextUtils. logger
private static InternalLogger
DnsNameResolver. logger
private static InternalLogger
DnsNameResolverBuilder. logger
private static InternalLogger
DnsQueryContext. logger
private static InternalLogger
DnsResolveContext. logger
private InternalLogger
LoggingDnsQueryLifecycleObserver. logger
private InternalLogger
LoggingDnsQueryLifeCycleObserverFactory. logger
private static InternalLogger
UnixResolverDnsServerAddressStreamProvider. logger
private static InternalLogger
DnsServerAddressStreamProviders. LOGGER
Constructors in io.netty.resolver.dns with parameters of type InternalLogger Constructor Description LoggingDnsQueryLifecycleObserver(DnsQuestion question, InternalLogger logger, InternalLogLevel level)
-
Uses of InternalLogger in io.netty.resolver.dns.macos
Fields in io.netty.resolver.dns.macos declared as InternalLogger Modifier and Type Field Description private static InternalLogger
MacOSDnsServerAddressStreamProvider. logger
-
Uses of InternalLogger in io.netty.util
Fields in io.netty.util declared as InternalLogger Modifier and Type Field Description (package private) static InternalLogger
HashedWheelTimer. logger
private static InternalLogger
NetUtil. logger
The logger being used by this classprivate static InternalLogger
NetUtilInitializations. logger
The logger being used by this classprivate static InternalLogger
Recycler. logger
private static InternalLogger
ReferenceCountUtil. logger
private static InternalLogger
ResourceLeakDetector. logger
private static InternalLogger
ResourceLeakDetectorFactory. logger
private static InternalLogger
ThreadDeathWatcher. logger
Deprecated. -
Uses of InternalLogger in io.netty.util.concurrent
Fields in io.netty.util.concurrent declared as InternalLogger Modifier and Type Field Description private static InternalLogger
AbstractEventExecutor. logger
private static InternalLogger
DefaultPromise. logger
private static InternalLogger
FastThreadLocalThread. logger
private static InternalLogger
GlobalEventExecutor. logger
private static InternalLogger
ImmediateEventExecutor. logger
private static InternalLogger
PromiseNotifier. logger
private static InternalLogger
SingleThreadEventExecutor. logger
private static InternalLogger
UnaryPromiseNotifier. logger
Deprecated.private static InternalLogger
UnorderedThreadPoolEventExecutor. logger
private static InternalLogger
DefaultPromise. rejectedExecutionLogger
-
Uses of InternalLogger in io.netty.util.internal
Fields in io.netty.util.internal declared as InternalLogger Modifier and Type Field Description private static InternalLogger
CleanerJava6. logger
private static InternalLogger
CleanerJava9. logger
private static InternalLogger
InternalThreadLocalMap. logger
private static InternalLogger
MacAddressUtil. logger
private static InternalLogger
NativeLibraryLoader. logger
private static InternalLogger
PlatformDependent. logger
private static InternalLogger
PlatformDependent0. logger
private static InternalLogger
SystemPropertyUtil. logger
private static InternalLogger
ThreadLocalRandom. logger
Methods in io.netty.util.internal with parameters of type InternalLogger Modifier and Type Method Description static void
PromiseNotificationUtil. tryCancel(Promise<?> p, InternalLogger logger)
static void
PromiseNotificationUtil. tryFailure(Promise<?> p, java.lang.Throwable cause, InternalLogger logger)
static <V> void
PromiseNotificationUtil. trySuccess(Promise<? super V> p, V result, InternalLogger logger)
-
Uses of InternalLogger in io.netty.util.internal.logging
Classes in io.netty.util.internal.logging that implement InternalLogger Modifier and Type Class Description class
AbstractInternalLogger
A skeletal implementation ofInternalLogger
.(package private) class
CommonsLogger
Deprecated.(package private) class
JdkLogger
java.util.logging logger.(package private) class
LocationAwareSlf4JLogger
SLF4J logger which is location aware and so will log the correct origin of the logging event by filter out the wrapper itself.(package private) class
Log4J2Logger
(package private) class
Log4JLogger
Apache Log4J logger.(package private) class
Slf4JLogger
SLF4J logger.Methods in io.netty.util.internal.logging that return InternalLogger Modifier and Type Method Description static InternalLogger
InternalLoggerFactory. getInstance(java.lang.Class<?> clazz)
Creates a new logger instance with the name of the specified class.static InternalLogger
InternalLoggerFactory. getInstance(java.lang.String name)
Creates a new logger instance with the specified name.InternalLogger
CommonsLoggerFactory. newInstance(java.lang.String name)
Deprecated.protected abstract InternalLogger
InternalLoggerFactory. newInstance(java.lang.String name)
Creates a new logger instance with the specified name.InternalLogger
JdkLoggerFactory. newInstance(java.lang.String name)
InternalLogger
Log4J2LoggerFactory. newInstance(java.lang.String name)
InternalLogger
Log4JLoggerFactory. newInstance(java.lang.String name)
InternalLogger
Slf4JLoggerFactory. newInstance(java.lang.String name)
(package private) static InternalLogger
Slf4JLoggerFactory. wrapLogger(org.slf4j.Logger logger)
-