Package fr.pingtimeout.jtail.io.index

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


        // 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.
        this.index.setOffsetOfLine(0, 0L);
    }
View Full Code Here


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

        // 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);
        }
View Full Code Here

TOP

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

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.