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.net Log4j 2 network support. -
-
Uses of ManagerFactory in org.apache.logging.log4j.core.appender
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(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(String name, T data, ManagerFactory<? extends OutputStreamManager,T> factory)
Creates a Manager.static <T> WriterManager
WriterManager. getManager(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(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.net
Subinterfaces of ManagerFactory in org.apache.logging.log4j.core.net Modifier and Type Interface Description interface
MailManagerFactory
Classes in org.apache.logging.log4j.core.net that implement ManagerFactory Modifier and Type Class Description static class
SmtpManager.SMTPManagerFactory
Factory to create the SMTP Manager.protected static class
TcpSocketManager.TcpSocketManagerFactory<M extends TcpSocketManager,T extends org.apache.logging.log4j.core.net.TcpSocketManager.FactoryData>
Factory to create a TcpSocketManager.
-