Package | Description |
---|---|
org.apache.logging.log4j.core.appender |
Log4j 2 Appenders.
|
org.apache.logging.log4j.core.appender.rolling |
Rolling File Appender and support classes.
|
org.apache.logging.log4j.core.net |
Log4j 2 network support.
|
Modifier and Type | Class and Description |
---|---|
class |
FileManager
Manages actual File I/O for File Appenders.
|
class |
HttpManager |
class |
HttpURLConnectionManager |
class |
MemoryMappedFileManager
Extends OutputStreamManager but instead of using a buffered output stream, this class maps a region of a file into
memory and writes to this memory region.
|
class |
OutputStreamManager
Manages an OutputStream so that it can be shared by multiple Appenders and will
allow appenders to reconfigure without requiring a new stream.
|
class |
RandomAccessFileManager
Extends OutputStreamManager but instead of using a buffered output stream,
this class uses a
ByteBuffer and a RandomAccessFile to do the
I/O. |
class |
WriterManager
Manages a Writer so that it can be shared by multiple Appenders and will
allow appenders to reconfigure without requiring a new writer.
|
Modifier and Type | Field and Description |
---|---|
private static java.util.Map<java.lang.String,AbstractManager> |
AbstractManager.MAP |
Modifier and Type | Method and Description |
---|---|
static <M extends AbstractManager,T> |
AbstractManager.getManager(java.lang.String name,
ManagerFactory<M,T> factory,
T data)
Retrieves a Manager if it has been previously created or creates a new Manager.
|
protected static <M extends AbstractManager> |
AbstractManager.narrow(java.lang.Class<M> narrowClass,
AbstractManager manager)
Returns the specified manager, cast to the specified narrow type.
|
Modifier and Type | Method and Description |
---|---|
protected static <M extends AbstractManager> |
AbstractManager.narrow(java.lang.Class<M> narrowClass,
AbstractManager manager)
Returns the specified manager, cast to the specified narrow type.
|
Modifier and Type | Class and Description |
---|---|
class |
RollingFileManager
The Rolling File Manager.
|
class |
RollingRandomAccessFileManager
Extends RollingFileManager but instead of using a buffered output stream, this class uses a
ByteBuffer and a
RandomAccessFile to do the I/O. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractSocketManager
Abstract base class for managing sockets.
|
class |
DatagramSocketManager
Socket Manager for UDP connections.
|
class |
JndiManager
Manages a JNDI
Context . |
class |
SmtpManager
Manager for sending SMTP events.
|
class |
SslSocketManager |
class |
TcpSocketManager
Manager of TCP Socket connections.
|