Package fr.pingtimeout.jtail.io.index

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


        // 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

Related Classes of fr.pingtimeout.jtail.io.index.RamFileIndex

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.