Uses of Class
org.apache.logging.log4j.core.appender.FileManager
Packages that use FileManager
Package
Description
Log4j 2 Appenders.
Rolling File Appender and support classes.
-
Uses of FileManager in org.apache.logging.log4j.core.appender
Subclasses with type arguments of type FileManager in org.apache.logging.log4j.core.appenderClasses in org.apache.logging.log4j.core.appender that implement interfaces with type arguments of type FileManagerModifier and TypeClassDescriptionprivate static classFactory to create a FileManager.Methods in org.apache.logging.log4j.core.appender that return FileManagerModifier and TypeMethodDescriptionFileManager.FileManagerFactory.createManager(String name, FileManager.FactoryData data) Creates a FileManager.static FileManagerFileManager.getFileManager(String fileName, boolean append, boolean locking, boolean bufferedIo, boolean createOnDemand, String advertiseUri, Layout<? extends Serializable> layout, int bufferSize, String filePermissions, String fileOwner, String fileGroup, Configuration configuration) Returns the FileManager.Constructors in org.apache.logging.log4j.core.appender with parameters of type FileManagerModifierConstructorDescriptionprivateFileAppender(String name, Layout<? extends Serializable> layout, Filter filter, FileManager manager, String filename, boolean ignoreExceptions, boolean immediateFlush, Advertiser advertiser, Property[] properties) -
Uses of FileManager in org.apache.logging.log4j.core.appender.rolling
Subclasses of FileManager in org.apache.logging.log4j.core.appender.rollingModifier and TypeClassDescriptionclassThe Rolling File Manager.classExtends RollingFileManager but instead of using a buffered output stream, this class uses aByteBufferand aRandomAccessFileto do the I/O.