Package com.alimama.mdrill.editlog.read.FSEditLogValidate

Examples of com.alimama.mdrill.editlog.read.FSEditLogValidate.EditLogValidation


    boolean containsTxId(long txId) {
      return firstTxId <= txId && txId <= lastTxId;
    }

    public void validateLog() throws IOException {
      EditLogValidation val = EditLogFileInputStream.validateEditLog(fs,file);
      this.lastTxId = val.getEndTxId();
      this.hasCorruptHeader = val.hasCorruptHeader();
    }
View Full Code Here

TOP

Related Classes of com.alimama.mdrill.editlog.read.FSEditLogValidate.EditLogValidation

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.