Uses of Class
org.apache.logging.log4j.core.appender.AbstractManager
Packages that use AbstractManager
Package
Description
Log4j 2 Appenders.
Rolling File Appender and support classes.
Log4j 2 network support.
-
Uses of AbstractManager in org.apache.logging.log4j.core.appender
Subclasses of AbstractManager in org.apache.logging.log4j.core.appenderModifier and TypeClassDescriptionclass
Manages actual File I/O for File Appenders.class
class
class
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
Manages an OutputStream so that it can be shared by multiple Appenders and will allow appenders to reconfigure without requiring a new stream.class
Extends OutputStreamManager but instead of using a buffered output stream, this class uses aByteBuffer
and aRandomAccessFile
to do the I/O.class
Manages a Writer so that it can be shared by multiple Appenders and will allow appenders to reconfigure without requiring a new writer.Fields in org.apache.logging.log4j.core.appender with type parameters of type AbstractManagerModifier and TypeFieldDescriptionprivate static final Map<String,
AbstractManager> AbstractManager.MAP
Methods in org.apache.logging.log4j.core.appender with type parameters of type AbstractManagerModifier and TypeMethodDescriptionstatic <M extends AbstractManager,
T>
MAbstractManager.getManager
(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>
MAbstractManager.narrow
(Class<M> narrowClass, AbstractManager manager) Returns the specified manager, cast to the specified narrow type.Methods in org.apache.logging.log4j.core.appender with parameters of type AbstractManagerModifier and TypeMethodDescriptionprotected static <M extends AbstractManager>
MAbstractManager.narrow
(Class<M> narrowClass, AbstractManager manager) Returns the specified manager, cast to the specified narrow type. -
Uses of AbstractManager in org.apache.logging.log4j.core.appender.rolling
Subclasses of AbstractManager in org.apache.logging.log4j.core.appender.rollingModifier and TypeClassDescriptionclass
The Rolling File Manager.class
Extends RollingFileManager but instead of using a buffered output stream, this class uses aByteBuffer
and aRandomAccessFile
to do the I/O. -
Uses of AbstractManager in org.apache.logging.log4j.core.net
Subclasses of AbstractManager in org.apache.logging.log4j.core.netModifier and TypeClassDescriptionclass
Abstract base class for managing sockets.class
Socket Manager for UDP connections.class
Manages a JNDIDirContext
.class
Parent of all managers that send e-mails.class
class
Manager of TCP Socket connections. -
Uses of AbstractManager in org.apache.logging.log4j.smtp
Subclasses of AbstractManager in org.apache.logging.log4j.smtp