Uses of Interface
org.jboss.netty.logging.InternalLogger
-
Packages that use InternalLogger Package Description org.jboss.netty.channel The core channel API which is asynchronous and event-driven abstraction of various transports such as a NIO Channel.org.jboss.netty.channel.group A channel registry which helps a user maintain the list of openChannel
s and perform bulk operations on them.org.jboss.netty.channel.local A virtual transport that enables the communication between the two parties in the same virtual machine.org.jboss.netty.channel.socket.http An HTTP-based client-sideSocketChannel
and its corresponding server-side Servlet implementation that make your existing server application work in a firewalled network.org.jboss.netty.channel.socket.nio NIO-based socket channel API implementation - recommended for a large number of connections (>= 1000).org.jboss.netty.channel.socket.oio Old blocking I/O based socket channel API implementation - recommended for a small number of connections (< 1000).org.jboss.netty.example.http.websocketx.autobahn This package is intended for use with testing against the Python AutoBahn test suite.org.jboss.netty.handler.codec.http Encoder, decoder and their related message types for HTTP.org.jboss.netty.handler.codec.http.cookie This package contains Cookie related classes.org.jboss.netty.handler.codec.http.multipart HTTP multipart support.org.jboss.netty.handler.codec.http.websocketx Encoder, decoder, handshakers and their related message types for Web Socket data frames.org.jboss.netty.handler.execution Executor
-based implementation of various thread models that separate business logic from I/O threadsorg.jboss.netty.handler.ipfilter Implementation of a Ip based Filter handlers.
org.jboss.netty.handler.logging Logs aChannelEvent
for debugging purpose using anInternalLogger
.org.jboss.netty.handler.ssl SSL · TLS implementation based onSSLEngine
org.jboss.netty.handler.ssl.util Utility classes that helps easier development of TLS/SSL applications.org.jboss.netty.handler.stream Writes very large data stream asynchronously neither spending a lot of memory nor gettingOutOfMemoryError
.org.jboss.netty.handler.traffic Implementation of a Traffic Shaping Handler and Dynamic Statistics.
org.jboss.netty.logging Simplistic internal-use-only logging layer which allows a user to decide what logging framework Netty should use.org.jboss.netty.util Utility classes used across multiple packages.org.jboss.netty.util.internal Internal-use-only utilities which is not allowed to be used outside Netty. -
-
Uses of InternalLogger in org.jboss.netty.channel
Fields in org.jboss.netty.channel declared as InternalLogger Modifier and Type Field Description private static InternalLogger
CompleteChannelFuture. logger
private static InternalLogger
DefaultChannelFuture. logger
(package private) static InternalLogger
DefaultChannelPipeline. logger
private static InternalLogger
DefaultFileRegion. logger
private static InternalLogger
SimpleChannelHandler. logger
private static InternalLogger
SimpleChannelUpstreamHandler. logger
-
Uses of InternalLogger in org.jboss.netty.channel.group
Fields in org.jboss.netty.channel.group declared as InternalLogger Modifier and Type Field Description private static InternalLogger
DefaultChannelGroupFuture. logger
-
Uses of InternalLogger in org.jboss.netty.channel.local
Fields in org.jboss.netty.channel.local declared as InternalLogger Modifier and Type Field Description private static InternalLogger
LocalClientChannelSink. logger
-
Uses of InternalLogger in org.jboss.netty.channel.socket.http
Fields in org.jboss.netty.channel.socket.http declared as InternalLogger Modifier and Type Field Description (package private) static InternalLogger
HttpTunnelingServlet. logger
-
Uses of InternalLogger in org.jboss.netty.channel.socket.nio
Fields in org.jboss.netty.channel.socket.nio declared as InternalLogger Modifier and Type Field Description private static InternalLogger
AbstractNioBossPool. logger
protected static InternalLogger
AbstractNioSelector. logger
Internal Netty logger.private static InternalLogger
AbstractNioWorkerPool. logger
private static InternalLogger
DefaultNioDatagramChannelConfig. logger
private static InternalLogger
DefaultNioSocketChannelConfig. logger
private static InternalLogger
NioClientSocketChannel. logger
(package private) static InternalLogger
NioClientSocketPipelineSink. logger
private static InternalLogger
NioServerSocketChannel. logger
private static InternalLogger
SelectorUtil. logger
-
Uses of InternalLogger in org.jboss.netty.channel.socket.oio
Fields in org.jboss.netty.channel.socket.oio declared as InternalLogger Modifier and Type Field Description private static InternalLogger
OioServerSocketChannel. logger
(package private) static InternalLogger
OioServerSocketPipelineSink. logger
-
Uses of InternalLogger in org.jboss.netty.example.http.websocketx.autobahn
Fields in org.jboss.netty.example.http.websocketx.autobahn declared as InternalLogger Modifier and Type Field Description private static InternalLogger
AutobahnServerHandler. logger
-
Uses of InternalLogger in org.jboss.netty.handler.codec.http
Fields in org.jboss.netty.handler.codec.http declared as InternalLogger Modifier and Type Field Description private InternalLogger
CookieDecoder. logger
Deprecated.private static InternalLogger
HttpContentCompressor. logger
-
Uses of InternalLogger in org.jboss.netty.handler.codec.http.cookie
Fields in org.jboss.netty.handler.codec.http.cookie declared as InternalLogger Modifier and Type Field Description private InternalLogger
CookieDecoder. logger
-
Uses of InternalLogger in org.jboss.netty.handler.codec.http.multipart
Fields in org.jboss.netty.handler.codec.http.multipart declared as InternalLogger Modifier and Type Field Description private static InternalLogger
AbstractDiskHttpData. logger
-
Uses of InternalLogger in org.jboss.netty.handler.codec.http.websocketx
Fields in org.jboss.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
private static InternalLogger
WebSocketServerHandshaker00. logger
private static InternalLogger
WebSocketServerHandshaker07. logger
private static InternalLogger
WebSocketServerHandshaker08. logger
private static InternalLogger
WebSocketServerHandshaker13. logger
private static InternalLogger
WebSocketServerProtocolHandshakeHandler. logger
-
Uses of InternalLogger in org.jboss.netty.handler.execution
Fields in org.jboss.netty.handler.execution declared as InternalLogger Modifier and Type Field Description private static InternalLogger
MemoryAwareThreadPoolExecutor. logger
-
Uses of InternalLogger in org.jboss.netty.handler.ipfilter
Fields in org.jboss.netty.handler.ipfilter declared as InternalLogger Modifier and Type Field Description private static InternalLogger
CIDR6. logger
private static InternalLogger
IpFilterRuleList. logger
private static InternalLogger
IpSubnet. logger
private static InternalLogger
PatternRule. logger
-
Uses of InternalLogger in org.jboss.netty.handler.logging
Fields in org.jboss.netty.handler.logging declared as InternalLogger Modifier and Type Field Description private InternalLogger
LoggingHandler. logger
Methods in org.jboss.netty.handler.logging that return InternalLogger Modifier and Type Method Description InternalLogger
LoggingHandler. getLogger()
Returns theInternalLogger
that this handler uses to log aChannelEvent
. -
Uses of InternalLogger in org.jboss.netty.handler.ssl
Fields in org.jboss.netty.handler.ssl declared as InternalLogger Modifier and Type Field Description private static InternalLogger
JdkSslContext. logger
private static InternalLogger
OpenSsl. logger
private static InternalLogger
OpenSslEngine. logger
private static InternalLogger
OpenSslServerContext. logger
private static InternalLogger
PemReader. logger
private static InternalLogger
SslHandler. logger
-
Uses of InternalLogger in org.jboss.netty.handler.ssl.util
Fields in org.jboss.netty.handler.ssl.util declared as InternalLogger Modifier and Type Field Description private static InternalLogger
InsecureTrustManagerFactory. logger
private static InternalLogger
SelfSignedCertificate. logger
-
Uses of InternalLogger in org.jboss.netty.handler.stream
Fields in org.jboss.netty.handler.stream declared as InternalLogger Modifier and Type Field Description private static InternalLogger
ChunkedWriteHandler. logger
-
Uses of InternalLogger in org.jboss.netty.handler.traffic
Fields in org.jboss.netty.handler.traffic declared as InternalLogger Modifier and Type Field Description (package private) static InternalLogger
AbstractTrafficShapingHandler. logger
Internal loggerprivate static InternalLogger
GlobalChannelTrafficShapingHandler. logger
private static InternalLogger
TrafficCounter. logger
-
Uses of InternalLogger in org.jboss.netty.logging
Classes in org.jboss.netty.logging that implement InternalLogger Modifier and Type Class Description class
AbstractInternalLogger
A skeletal implementation ofInternalLogger
.(package private) class
CommonsLogger
Apache Commons Logging logger.(package private) class
JBossLogger
JBoss Logging logger.(package private) class
JdkLogger
java.util.logging logger.(package private) class
Log4JLogger
Apache Log4J logger.(package private) class
OsgiLogger
OSGiLogService
logger.(package private) class
Slf4JLogger
SLF4J logger.Fields in org.jboss.netty.logging declared as InternalLogger Modifier and Type Field Description private InternalLogger
OsgiLogger. fallback
Methods in org.jboss.netty.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)
abstract InternalLogger
InternalLoggerFactory. newInstance(java.lang.String name)
Creates a new logger instance with the specified name.InternalLogger
JBossLoggerFactory. newInstance(java.lang.String name)
InternalLogger
JdkLoggerFactory. newInstance(java.lang.String name)
InternalLogger
Log4JLoggerFactory. newInstance(java.lang.String name)
InternalLogger
OsgiLoggerFactory. newInstance(java.lang.String name)
InternalLogger
Slf4JLoggerFactory. newInstance(java.lang.String name)
Constructors in org.jboss.netty.logging with parameters of type InternalLogger Constructor Description OsgiLogger(OsgiLoggerFactory parent, java.lang.String name, InternalLogger fallback)
-
Uses of InternalLogger in org.jboss.netty.util
Fields in org.jboss.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
ThreadRenamingRunnable. logger
-
Uses of InternalLogger in org.jboss.netty.util.internal
Fields in org.jboss.netty.util.internal declared as InternalLogger Modifier and Type Field Description private static InternalLogger
NativeLibraryLoader. logger
private static InternalLogger
SharedResourceMisuseDetector. logger
private static InternalLogger
SystemPropertyUtil. logger
-