Package org.apache.directory.server.log.impl.LogFileManager

Examples of org.apache.directory.server.log.impl.LogFileManager.LogFileWriter


        File logFile = this.makeLogFileName( logFileNumber );

        // This will throw a file not found exception if file does not exist
        RandomAccessFile raf = new RandomAccessFile( logFile, "rw" );

        return new LogFileWriter( raf, logFileNumber );
    }
View Full Code Here

TOP

Related Classes of org.apache.directory.server.log.impl.LogFileManager.LogFileWriter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.