Uses of Interface
org.apache.logging.log4j.core.appender.ManagerFactory
-
Packages that use ManagerFactory Package Description org.apache.logging.log4j.core.appender Log4j 2 Appenders.org.apache.logging.log4j.core.appender.db The classes in this package and sub packages provide appenders for various types of databases and methods for accessing databases.org.apache.logging.log4j.core.appender.db.jdbc The JDBC Appender supports writing log events to a relational database using standard JDBC connections.org.apache.logging.log4j.core.appender.mom Message oriented middleware appenders.org.apache.logging.log4j.core.appender.mom.jeromq Classes and interfaces for ZeroMQ/JeroMQ support.org.apache.logging.log4j.core.appender.nosql The NoSQL Appender supports writing log events to NoSQL databases.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 ManagerFactory in org.apache.logging.log4j.core.appender
Classes in org.apache.logging.log4j.core.appender that implement ManagerFactory Modifier and Type Class Description private static class
ConsoleAppender.ConsoleManagerFactory
Factory to create the Appender.private static class
FileManager.FileManagerFactory
Factory to create a FileManager.private static class
MemoryMappedFileManager.MemoryMappedFileManagerFactory
Factory to create a MemoryMappedFileManager.private static class
OutputStreamAppender.OutputStreamManagerFactory
Creates the manager.private static class
RandomAccessFileManager.RandomAccessFileManagerFactory
Factory to create a RandomAccessFileManager.private static class
WriterAppender.WriterManagerFactory
Methods in org.apache.logging.log4j.core.appender with parameters of type ManagerFactory Modifier and Type Method Description static <M extends AbstractManager,T>
MAbstractManager. 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.static <T> OutputStreamManager
OutputStreamManager. getManager(java.lang.String name, T data, ManagerFactory<? extends OutputStreamManager,T> factory)
Creates a Manager.static <T> WriterManager
WriterManager. getManager(java.lang.String name, T data, ManagerFactory<? extends WriterManager,T> factory)
Creates a Manager. -
Uses of ManagerFactory in org.apache.logging.log4j.core.appender.db
Methods in org.apache.logging.log4j.core.appender.db with parameters of type ManagerFactory Modifier and Type Method Description protected static <M extends AbstractDatabaseManager,T extends AbstractDatabaseManager.AbstractFactoryData>
MAbstractDatabaseManager. getManager(java.lang.String name, T data, ManagerFactory<M,T> factory)
Implementations should define their own getManager method and call this method from that to create or get existing managers. -
Uses of ManagerFactory in org.apache.logging.log4j.core.appender.db.jdbc
Classes in org.apache.logging.log4j.core.appender.db.jdbc that implement ManagerFactory Modifier and Type Class Description private static class
JdbcDatabaseManager.JdbcDatabaseManagerFactory
Creates managers. -
Uses of ManagerFactory in org.apache.logging.log4j.core.appender.mom
Classes in org.apache.logging.log4j.core.appender.mom that implement ManagerFactory Modifier and Type Class Description private static class
JmsManager.JmsManagerFactory
-
Uses of ManagerFactory in org.apache.logging.log4j.core.appender.mom.jeromq
Classes in org.apache.logging.log4j.core.appender.mom.jeromq that implement ManagerFactory Modifier and Type Class Description private static class
JeroMqManager.JeroMqManagerFactory
-
Uses of ManagerFactory in org.apache.logging.log4j.core.appender.nosql
Classes in org.apache.logging.log4j.core.appender.nosql that implement ManagerFactory Modifier and Type Class Description private static class
NoSqlDatabaseManager.NoSQLDatabaseManagerFactory
Creates managers. -
Uses of ManagerFactory in org.apache.logging.log4j.core.appender.rolling
Classes in org.apache.logging.log4j.core.appender.rolling that implement ManagerFactory Modifier and Type Class Description private static class
RollingFileManager.RollingFileManagerFactory
Factory to create a RollingFileManager.private static class
RollingRandomAccessFileManager.RollingRandomAccessFileManagerFactory
Factory to create a RollingRandomAccessFileManager. -
Uses of ManagerFactory in org.apache.logging.log4j.core.net
Classes in org.apache.logging.log4j.core.net that implement ManagerFactory Modifier and Type Class Description private static class
DatagramSocketManager.DatagramSocketManagerFactory
Factory to create the DatagramSocketManager.private static class
JndiManager.JndiManagerFactory
private static class
SmtpManager.SMTPManagerFactory
Factory to create the SMTP Manager.private static class
SslSocketManager.SslSocketManagerFactory
protected static class
TcpSocketManager.TcpSocketManagerFactory<M extends TcpSocketManager,T extends TcpSocketManager.FactoryData>
Factory to create a TcpSocketManager.
-