Uses of Class
org.apache.logging.log4j.core.appender.AbstractManager
-
Packages that use AbstractManager 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. -
-
Uses of AbstractManager in org.apache.logging.log4j.core.appender
Subclasses of AbstractManager in org.apache.logging.log4j.core.appender Modifier and Type Class Description classFileManagerManages actual File I/O for File Appenders.classHttpManagerclassHttpURLConnectionManagerclassMemoryMappedFileManagerExtends 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.classOutputStreamManagerManages an OutputStream so that it can be shared by multiple Appenders and will allow appenders to reconfigure without requiring a new stream.classRandomAccessFileManagerExtends OutputStreamManager but instead of using a buffered output stream, this class uses aByteBufferand aRandomAccessFileto do the I/O.classWriterManagerManages a Writer so that it can be shared by multiple Appenders and will allow appenders to reconfigure without requiring a new writer.Methods in org.apache.logging.log4j.core.appender with type parameters of type AbstractManager Modifier and Type Method Description static <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 AbstractManager Modifier and Type Method Description protected 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.rolling Modifier and Type Class Description classRollingFileManagerThe Rolling File Manager.classRollingRandomAccessFileManagerExtends RollingFileManager but instead of using a buffered output stream, this class uses aByteBufferand aRandomAccessFileto do the I/O. -
Uses of AbstractManager in org.apache.logging.log4j.core.net
Subclasses of AbstractManager in org.apache.logging.log4j.core.net Modifier and Type Class Description classAbstractSocketManagerAbstract base class for managing sockets.classDatagramSocketManagerSocket Manager for UDP connections.classJndiManagerManages a JNDIDirContext.classSmtpManagerManager for sending SMTP events.classSslSocketManagerclassTcpSocketManagerManager of TCP Socket connections.
-