Examples of RamFileIndex


Examples of fr.pingtimeout.jtail.io.index.RamFileIndex

            throw new FileNotFoundException(file.getName());
        }

        // Build the index.
        if (file.length() < FILE_SIZE_10MB) {
            this.index = new RamFileIndex(this.file);
        } else {
            this.index = new RomFileIndex(this.file);
        }

        // The first line of the file always begins at position 0.
View Full Code Here

Examples of fr.pingtimeout.jtail.io.index.RamFileIndex

        // Build the index.
        if (fileIndexClass.equals(RomFileIndex.class)) {
            this.index = new RomFileIndex(this.file);
        } else if (fileIndexClass.equals(RamFileIndex.class)) {
            this.index = new RamFileIndex(this.file);
        } else {
            throw new IllegalArgumentException("Unknown FileIndex Class : " + fileIndexClass);
        }

        // The first line of the file always begins at position 0.
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.