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 virtualChannelthat helps wrapping a series of handlers to unit test the handlers or use them in non-I/O context.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.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.proxy Adds support for client connections via proxy protocols such as SOCKS and HTTP CONNECT tunnelingio.netty.handler.ssl SSL · TLS implementation based onSSLEngineio.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.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 InternalLoggerBootstrap. loggerprivate static InternalLoggerServerBootstrap. loggerMethods in io.netty.bootstrap with parameters of type InternalLogger Modifier and Type Method Description private static voidAbstractBootstrap. setChannelOption(Channel channel, ChannelOption<?> option, java.lang.Object value, InternalLogger logger)(package private) static voidAbstractBootstrap. 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 InternalLoggerAbstractByteBuf. loggerprivate static InternalLoggerAdvancedLeakAwareByteBuf. loggerprivate static InternalLoggerByteBufUtil. loggerprivate static InternalLoggerPooledByteBufAllocator. loggerprivate static InternalLoggerPoolThreadCache. logger -
Uses of InternalLogger in io.netty.channel
Fields in io.netty.channel declared as InternalLogger Modifier and Type Field Description private static InternalLoggerAbstractChannel. loggerprivate static InternalLoggerAbstractChannelHandlerContext. loggerprivate static InternalLoggerAbstractCoalescingBufferQueue. loggerprivate static InternalLoggerChannelHandlerMask. loggerprivate static InternalLoggerChannelInitializer. loggerprivate static InternalLoggerChannelOutboundBuffer. loggerprivate static InternalLoggerCombinedChannelDuplexHandler. loggerprivate static InternalLoggerDefaultChannelId. logger(package private) static InternalLoggerDefaultChannelPipeline. loggerprivate static InternalLoggerDefaultFileRegion. loggerprivate static InternalLoggerDelegatingChannelPromiseNotifier. loggerprivate static InternalLoggerMultithreadEventLoopGroup. loggerprivate static InternalLoggerPendingWriteQueue. 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 InternalLoggerEmbeddedChannel. 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 InternalLoggerLocalChannel. 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 InternalLoggerAbstractNioChannel. loggerprivate static InternalLoggerNioEventLoop. logger -
Uses of InternalLogger in io.netty.channel.socket
Fields in io.netty.channel.socket declared as InternalLogger Modifier and Type Field Description private static InternalLoggerDefaultDatagramChannelConfig. 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 InternalLoggerNioServerSocketChannel. loggerprivate static InternalLoggerNioSocketChannel. 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 InternalLoggerOioDatagramChannel. loggerDeprecated.private static InternalLoggerOioServerSocketChannel. loggerDeprecated.private static InternalLoggerOioSocketChannel. loggerDeprecated. -
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 InternalLoggerZlibCodecFactory. 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 InternalLoggerCookieDecoder. loggerDeprecated.private static InternalLoggerHttpObjectAggregator. 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 InternalLoggerCookieDecoder. 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 InternalLoggerCorsHandler. 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 InternalLoggerAbstractDiskHttpData. 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 InternalLoggerWebSocket08FrameDecoder. loggerprivate static InternalLoggerWebSocket08FrameEncoder. loggerprivate static InternalLoggerWebSocketClientHandshaker07. loggerprivate static InternalLoggerWebSocketClientHandshaker08. loggerprivate static InternalLoggerWebSocketClientHandshaker13. loggerprotected static InternalLoggerWebSocketServerHandshaker. 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 InternalLoggerHttp2FrameCodec. LOGprivate static InternalLoggerAbstractHttp2StreamChannel. loggerprivate static InternalLoggerDefaultHttp2Connection. loggerprivate static InternalLoggerDefaultHttp2ConnectionDecoder. loggerprivate static InternalLoggerDefaultHttp2RemoteFlowController. loggerprivate static InternalLoggerHttp2ConnectionHandler. loggerprivate static InternalLoggerHttp2ControlFrameLimitEncoder. loggerprivate InternalLoggerHttp2FrameLogger. loggerprivate static InternalLoggerHttp2ServerUpgradeCodec. loggerprivate static InternalLoggerHttp2StreamChannelBootstrap. loggerConstructors 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 InternalLoggerSocksPortUnificationServerHandler. 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 InternalLoggerFlowControlHandler. logger -
Uses of InternalLogger in io.netty.handler.logging
Fields in io.netty.handler.logging declared as InternalLogger Modifier and Type Field Description protected InternalLoggerLoggingHandler. 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 InternalLoggerProxyHandler. 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 InternalLoggerApplicationProtocolNegotiationHandler. loggerprivate static InternalLoggerJdkAlpnSslUtils. loggerprivate static InternalLoggerJdkSslContext. loggerprivate static InternalLoggerPemReader. loggerprivate static InternalLoggerSslClientHelloHandler. loggerprivate static InternalLoggerSslHandler. loggerprivate static InternalLoggerSslMasterKeyHandler. loggerprivate static InternalLoggerOpenSslX509TrustManagerWrapper. LOGGERprivate static InternalLoggerSslMasterKeyHandler.WiresharkSslMasterKeyHandler. wireshark_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 InternalLoggerInsecureTrustManagerFactory. loggerprivate static InternalLoggerSelfSignedCertificate. 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 InternalLoggerChunkedWriteHandler. 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 InternalLoggerAbstractTrafficShapingHandler. loggerprivate static InternalLoggerGlobalChannelTrafficShapingHandler. loggerprivate static InternalLoggerTrafficCounter. logger -
Uses of InternalLogger in io.netty.resolver
Fields in io.netty.resolver declared as InternalLogger Modifier and Type Field Description private static InternalLoggerAddressResolverGroup. loggerprivate static InternalLoggerHostsFileParser. 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 InternalLoggerTraceDnsQueryLifeCycleObserverFactory. DEFAULT_LOGGERprivate static InternalLoggerDefaultDnsServerAddressStreamProvider. loggerprivate static InternalLoggerDirContextUtils. loggerprivate static InternalLoggerDnsNameResolver. loggerprivate static InternalLoggerDnsQueryContext. loggerprivate InternalLoggerTraceDnsQueryLifecycleObserver. loggerprivate InternalLoggerTraceDnsQueryLifeCycleObserverFactory. loggerprivate static InternalLoggerUnixResolverDnsServerAddressStreamProvider. loggerprivate static InternalLoggerDnsServerAddressStreamProviders. LOGGERConstructors in io.netty.resolver.dns with parameters of type InternalLogger Constructor Description TraceDnsQueryLifecycleObserver(DnsQuestion question, InternalLogger logger, InternalLogLevel level)TraceDnsQueryLifeCycleObserverFactory(InternalLogger logger, InternalLogLevel level) -
Uses of InternalLogger in io.netty.util
Fields in io.netty.util declared as InternalLogger Modifier and Type Field Description (package private) static InternalLoggerHashedWheelTimer. loggerprivate static InternalLoggerNetUtil. loggerThe logger being used by this classprivate static InternalLoggerRecycler. loggerprivate static InternalLoggerReferenceCountUtil. loggerprivate static InternalLoggerResourceLeakDetector. loggerprivate static InternalLoggerResourceLeakDetectorFactory. loggerprivate static InternalLoggerThreadDeathWatcher. loggerDeprecated. -
Uses of InternalLogger in io.netty.util.concurrent
Fields in io.netty.util.concurrent declared as InternalLogger Modifier and Type Field Description private static InternalLoggerAbstractEventExecutor. loggerprivate static InternalLoggerDefaultPromise. loggerprivate static InternalLoggerGlobalEventExecutor. loggerprivate static InternalLoggerImmediateEventExecutor. loggerprivate static InternalLoggerPromiseNotifier. loggerprivate static InternalLoggerSingleThreadEventExecutor. loggerprivate static InternalLoggerUnaryPromiseNotifier. loggerprivate static InternalLoggerUnorderedThreadPoolEventExecutor. loggerprivate static InternalLoggerDefaultPromise. 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 InternalLoggerCleanerJava6. loggerprivate static InternalLoggerCleanerJava9. loggerprivate static InternalLoggerInternalThreadLocalMap. loggerprivate static InternalLoggerMacAddressUtil. loggerprivate static InternalLoggerNativeLibraryLoader. loggerprivate static InternalLoggerPlatformDependent. loggerprivate static InternalLoggerPlatformDependent0. loggerprivate static InternalLoggerSystemPropertyUtil. loggerprivate static InternalLoggerThreadLocalRandom. loggerMethods in io.netty.util.internal with parameters of type InternalLogger Modifier and Type Method Description static voidPromiseNotificationUtil. tryCancel(Promise<?> p, InternalLogger logger)static voidPromiseNotificationUtil. tryFailure(Promise<?> p, java.lang.Throwable cause, InternalLogger logger)static <V> voidPromiseNotificationUtil. 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 classAbstractInternalLoggerA skeletal implementation ofInternalLogger.(package private) classCommonsLoggerDeprecated.(package private) classJdkLoggerjava.util.logging logger.(package private) classLocationAwareSlf4JLoggerSLF4J logger which is location aware and so will log the correct origin of the logging event by filter out the wrapper itself.(package private) classSlf4JLoggerSLF4J logger.Methods in io.netty.util.internal.logging that return InternalLogger Modifier and Type Method Description static InternalLoggerInternalLoggerFactory. getInstance(java.lang.Class<?> clazz)Creates a new logger instance with the name of the specified class.static InternalLoggerInternalLoggerFactory. getInstance(java.lang.String name)Creates a new logger instance with the specified name.InternalLoggerCommonsLoggerFactory. newInstance(java.lang.String name)Deprecated.protected abstract InternalLoggerInternalLoggerFactory. newInstance(java.lang.String name)Creates a new logger instance with the specified name.InternalLoggerJdkLoggerFactory. newInstance(java.lang.String name)InternalLoggerSlf4JLoggerFactory. newInstance(java.lang.String name)(package private) static InternalLoggerSlf4JLoggerFactory. wrapLogger(org.slf4j.Logger logger)
-